galerie/web/www/index.html.tsx
0xf8 3e3361ddbc
Initial commit
Signed-off-by: 0xf8 <0xf8.dev@proton.me>
2023-02-25 12:24:57 -05:00

15 lines
423 B
TypeScript

import App from "./app";
import React from "react";
import jQuery from "jquery";
const $ = jQuery;
App(() => {
return <>
<div id="container" style={{ display: "flex", flexDirection: "column", alignContent: "center", textAlign: "center" }}>
<h2 style={{ margin: "2em 0 0 0" }}>Galerie</h2>
Go to <a style={{ color: "white", textDecoration: "none" }} href="/gallery.html">Gallery</a>
</div>
</>;
})