8 строки
184 B
React
8 строки
184 B
React
|
import * as React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import App from './redux/containers/App';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<App />,
|
||
|
document.getElementById('app')
|
||
|
);
|