/
eb
/
react-2020-11-13
Обзор
Документация
Войти
/
eb
/
react-2020-11-13
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/index.js
19 строк
411 B
andriiko
add simple redux flow
24 ноя 2020, 21:36
24 ноя 2020, 21:36
2df0567
Код
Авторство
О чём код?
import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import './index.css'; import App from './components/app'; import { restaurants } from './fixtures'; import store from './redux/store'; // DEV ONLY!!! window.store = store; ReactDOM.render( <Provider store={store}> <App restaurants={restaurants} /> </Provider>, document.getElementById('root') );