DoItJust --> initial commit

This commit is contained in:
2025-09-10 06:35:40 -04:00
commit c05368a6a6
24 changed files with 935 additions and 0 deletions

View File

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