forked from jaysoo/todomvc-redux-react-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tsx
36 lines (30 loc) · 881 Bytes
/
main.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
/// <reference path='../typings/react/react.d.ts'/>
/// <reference path='../typings/react-dom/react-dom.d.ts'/>
/// <reference path='../typings/redux-actions/redux-actions.d.ts'/>
/// <reference path='../typings/redux/redux.d.ts'/>
/// <reference path='../typings/react-redux/react-redux.d.ts'/>
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import '../src-scss/main.css!';
import {
Store,
compose,
createStore,
bindActionCreators,
combineReducers
} from 'redux';
import {
connect,
Provider
} from 'react-redux';
import { Action } from 'redux-actions';
import App from './containers/App';
import { rootReducer } from './reducers/rootReducer';
const initialState = {};
const store: Store = createStore(rootReducer, initialState);
ReactDOM.render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('app')
);