chore: move Kanban code to separate module

This commit is contained in:
Jordan Knott
2020-04-16 15:05:12 -05:00
parent 16eb9e165f
commit beaa215bc2
8 changed files with 243 additions and 206 deletions

View File

@ -16,7 +16,7 @@ const Routes = ({ history }: RoutesProps) => (
<Switch>
<Route exact path="/" component={Dashboard} />
<Route exact path="/projects" component={Projects} />
<Route exact path="/projects/:projectId" component={Project} />
<Route path="/projects/:projectId" component={Project} />
<Route exact path="/login" component={Login} />
</Switch>
</Router>