mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-04-20 06:38:05 -06:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
import React from 'react';
|
|
import ReactDom from 'react-dom';
|
|
import App from './components/App';
|
|
import './styles/global.sass';
|
|
|
|
ReactDom.render(<App />, document.getElementById('app'));
|
|
|
|
if (module.hot) {
|
|
module.hot.accept();
|
|
} |