LocChat/client/index.js

6 lines
139 B
JavaScript
Raw Normal View History

2021-11-16 21:14:46 -05:00
import ReactDOM from 'react-dom';
2021-11-20 20:18:58 -05:00
import { App } from './app';
2021-11-16 21:14:46 -05:00
const app = document.getElementById('app');
ReactDOM.render(<App />, app);