LocChat/client/index.js

6 lines
135 B
JavaScript
Raw Normal View History

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