add frontend work

This commit is contained in:
2024-10-15 23:52:21 -05:00
parent d7aa949cad
commit a72e2123bf
4 changed files with 91 additions and 0 deletions

10
frontend/src/index.tsx Normal file
View File

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