9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
|
|
import Popup from './Popup';
|
|
import './index.css';
|
|
|
|
render(<Popup />, window.document.querySelector('#app-container'));
|
|
|
|
if (module.hot) module.hot.accept();
|