Setting up client environment

This commit is contained in:
April Eaton 2026-01-09 23:44:58 +01:00
parent 0ab2b91c40
commit 61b1b3372b
Signed by: AprilEaton
GPG key ID: 0BCF829D48AE5C9D
13 changed files with 3419 additions and 0 deletions

11
client/src/index.tsx Normal file
View file

@ -0,0 +1,11 @@
import { createRoot } from 'react-dom/client';
import { StrictMode } from 'react';
import { App } from './App';
let container = document.getElementById("app")!;
let root = createRoot(container)
root.render(
<StrictMode>
<App />
</StrictMode>
);