This commit is contained in:
2025-06-05 20:35:12 +02:00
commit f3cf85aa75
28 changed files with 3576 additions and 0 deletions

14
lab07/src/main.jsx Normal file
View File

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