Added frontend

This commit is contained in:
Aaron Sun
2019-09-19 14:30:02 -04:00
parent ff2a83d4a0
commit 6341100061
12 changed files with 9858 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import './index.css';
ReactDOM.render(
<App />,
document.getElementById('root')
);