2021-03-24 03:29:35 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import './index.css';
|
|
|
|
import App from './App';
|
2021-03-25 08:52:06 +00:00
|
|
|
import { BrowserRouter } from 'react-router-dom'
|
2021-03-24 03:29:35 +00:00
|
|
|
|
2021-03-26 02:31:00 +00:00
|
|
|
import { Provider } from 'react-redux'
|
|
|
|
import { createStore } from 'redux'
|
|
|
|
|
|
|
|
const goScorbbleStore = (state = false, logIn) => {
|
|
|
|
return state = logIn
|
|
|
|
};
|
|
|
|
|
|
|
|
const store = createStore(goScorbbleStore);
|
|
|
|
|
2021-03-24 03:29:35 +00:00
|
|
|
ReactDOM.render(
|
2021-03-26 02:31:00 +00:00
|
|
|
<Provider store={store}>
|
|
|
|
<BrowserRouter>
|
|
|
|
<App />
|
|
|
|
</BrowserRouter>
|
|
|
|
</Provider>,
|
2021-03-24 03:29:35 +00:00
|
|
|
document.getElementById('root')
|
|
|
|
);
|