-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.tsx
37 lines (32 loc) · 892 Bytes
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { Provider as RebassProvider } from 'rebass';
import App from './App';
import configureStore, { history } from './configureStore';
import './index.css';
// Add ES6 Map support for redux-devtools-extension
// See: https://github.com/zalmoxisus/redux-devtools-extension/issues/124
if (process.env.NODE_ENV !== 'production') {
require('map.prototype.tojson');
}
const store = configureStore();
declare global {
interface Window {
devToolsExtension: any;
env: {
DEPLOY_ENV: string;
APP_VERSION: string;
APP_SECRET: string;
GA_ID: string;
};
}
}
ReactDOM.render(
<Provider store={store}>
<RebassProvider id="provider">
<App history={history} />
</RebassProvider>
</Provider>,
document.getElementById('root'),
);