[69507b]: / app / frontend / src / index.js

Download this file

24 lines (15 with data), 449 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
import ReactDOM from 'react-dom'
import React from 'react'
import App from './components/App';
import './tailwind.generated.css';
import {Provider} from 'react-redux';
import {createStore, applyMiddleware} from "redux";
import thunk from 'redux-thunk';
import reducers from './reducers';
ReactDOM.render(
<Provider store = {createStore(reducers,applyMiddleware(thunk))}>
<App />
</Provider>
,
document.getElementById('root')
);