First attempt at react interface

This commit is contained in:
2026-01-21 12:51:40 -05:00
parent 5d8977e0c0
commit 3c489b7c32
16 changed files with 16805 additions and 20 deletions

11
client/src/index.js Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react';
import {createRoot} from 'react-dom/client';
import './App.css';
import App from './App';
const root = createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);