updates to frontend-react

This commit is contained in:
2025-10-01 07:49:34 -04:00
parent 0345f3d2d0
commit 0e8b84b462
29 changed files with 1693 additions and 6 deletions

View File

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