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

13
lab07/src/index.js Normal file
View File

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