Add sign in, sign up, and upload forms

This commit is contained in:
jwu-fisker
2021-01-05 11:28:10 -08:00
parent 049b94015f
commit c3229c4d55
15 changed files with 354 additions and 44 deletions

View File

@@ -2,14 +2,12 @@ import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './components/App';
import ErrorBoundary from './components/ErrorBoundary';
// import ErrorBoundary from './components/ErrorBoundary';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(
<React.StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
<App />
</React.StrictMode>,
document.getElementById('root')
);