galerie/web/www/settings.html.tsx

25 lines
481 B
TypeScript
Raw Normal View History

import App from "./app";
import React from "react";
import jQuery from "jquery";
const $ = jQuery;
import Settings from "./settings";
const settings = new Settings();
window.onload = async() => {
// console.log(settings.config.keys());
}
App(() => {
return <>
<div id="container">
<h2 style={{ marginTop: "2em", textAlign: "center" }}>Work in progress. Nothing here is final or guaranteed to work.</h2>
<ul id="settings">
</ul>
</div>
</>;
})