34 lines
871 B
JavaScript
34 lines
871 B
JavaScript
import React from "react";
|
|
import {html} from "htm";
|
|
import * as TW from "./twind.js";
|
|
import * as UI from "./ui.js";
|
|
import * as Store from "./store.js";
|
|
|
|
// @ts-ignore:
|
|
const ShadowDOM = document.querySelector("#app").attachShadow({mode: "open"});
|
|
const ShadowDiv = document.createElement("div");
|
|
const ShadowCSS = document.createElement("style");
|
|
ShadowDOM.append(ShadowCSS);
|
|
ShadowDOM.append(ShadowDiv);
|
|
|
|
TW.Init(ShadowCSS, ShadowDiv);
|
|
|
|
React.render(html`
|
|
<${Store.Provider}>
|
|
<div class="max-w-[1170px] mx-auto">
|
|
|
|
<${UI.Header}/>
|
|
|
|
<div class="flex flex-col items-start lg:flex-row my-4">
|
|
<${UI.Controls}/>
|
|
<${UI.Chart}>
|
|
<${UI.Audiogram}/>
|
|
<div class="absolute bottom-0 right-0"><${UI.Display}/></div>
|
|
<//>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
<//>
|
|
`, ShadowDiv); |