2023-02-25 22:54:57 +05:30
|
|
|
|
|
|
|
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() => {
|
2023-02-25 22:54:58 +05:30
|
|
|
// console.log(settings.config.keys());
|
2023-02-25 22:54:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
App(() => {
|
|
|
|
return <>
|
|
|
|
<div id="container">
|
2023-02-25 22:54:58 +05:30
|
|
|
<h2 style={{ marginTop: "2em", textAlign: "center" }}>Work in progress. Nothing here is final or guaranteed to work.</h2>
|
2023-02-25 22:54:57 +05:30
|
|
|
<ul id="settings">
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</>;
|
|
|
|
})
|