70e029d151
This reverts commit 52a172d1a4
.
13 lines
311 B
TypeScript
13 lines
311 B
TypeScript
import { QuartzComponentConstructor } from "../types"
|
|
|
|
function OfflineFallbackPage() {
|
|
return (
|
|
<article class="popover-hint">
|
|
<h1>Offline</h1>
|
|
<p>This page isn't offline available yet.</p>
|
|
</article>
|
|
)
|
|
}
|
|
|
|
export default (() => OfflineFallbackPage) satisfies QuartzComponentConstructor
|