mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-23 12:06:22 +00:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import { QuartzComponentConstructor } from "../types"
|
|
|
|
function OfflineFallbackPage() {
|
|
return (
|
|
<article class="popover-hint">
|
|
<h1>Offline</h1>
|
|
<p>You're offline and this page hasn't been cached yet.</p>
|
|
</article>
|
|
)
|
|
}
|
|
|
|
export default (() => OfflineFallbackPage) satisfies QuartzComponentConstructor
|