In the process of linking backend and UI

This commit is contained in:
Aaron Sun
2019-09-24 14:38:13 -04:00
parent 6f94623d0c
commit e2883a04c5
10 changed files with 63 additions and 23 deletions

View File

@@ -13,16 +13,12 @@ class App extends Component {
return (
<Router>
<div className="app">
<Route exact path="/" component={home}/>
<Route exact path="/register" component={register}/>
<Route exact path="/login" component={login}/>
</div>
</Router>
);
}