15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
/* eslint-disable formatjs/no-literal-string-in-jsx */
|
|
|
|
import styles from "./banner.module.css"
|
|
|
|
export default function OfflineBanner() {
|
|
return (
|
|
<div className={`${styles.banner} ${styles.hidden}`}>
|
|
You are offline, some content may be out of date.
|
|
<button className={styles.reloadBtn} type="button">
|
|
Reload
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|