Skip to content

Commit

Permalink
Merge pull request #9 from victorvrv/master
Browse files Browse the repository at this point in the history
Login to LoginForm component name
  • Loading branch information
victorvrv authored Feb 13, 2019
2 parents 2d51249 + 47f6d34 commit 0f9adde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { Component } from 'react';
import { Router, Route } from 'react-router-dom';
import Header from './components/Header';
import Dashboard from './components/Dashboard';
import Login from './components/LoginForm';
import LoginForm from './components/LoginForm';
import SignUp from './components/SignUpForm';
import './css/App.css';
import createBrowserHistory from 'history/createBrowserHistory'
Expand All @@ -28,7 +28,7 @@ class App extends Component {
avatar={this.state.avatar}
/>

<Route exact path='/' component={Login} />
<Route exact path='/' component={LoginForm} />
<Route path='/register' component={SignUp} />
<Route path='/dashboard' component={Dashboard} />
</div>
Expand Down

0 comments on commit 0f9adde

Please sign in to comment.