galerie/web/www/index.html.tsx

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>
</>;
})