First commit

This commit is contained in:
Frank Delaguila
2022-03-12 18:29:49 -07:00
parent 2b0a031e84
commit 7f7415e48e
10 changed files with 406 additions and 0 deletions

10
src/scripts/app.js Normal file
View File

@@ -0,0 +1,10 @@
import { render } from 'react-dom';
import App from '../components/App';
render(
<App />,
document.getElementById("root") );
if (module['hot']) {
module['hot'].accept();
}