Add authentication and assets

This commit is contained in:
2025-09-03 01:38:47 -04:00
parent c8a9e9329a
commit 04488c43c5
48 changed files with 3710 additions and 0 deletions

12
src/main.tsx Normal file
View File

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