redux-devtools/examples/counter/index.js

8 lines
126 B
JavaScript
Raw Normal View History

2015-07-14 22:46:44 +03:00
import React from 'react';
import App from './containers/App';
React.render(
<App />,
document.getElementById('root')
);