import ReactDOM from 'react-dom';
import { App } from './app';
const app = document.getElementById('app');
ReactDOM.render(<App />, app);