Skip to content

Commit

Permalink
Move Overview out of layout to hide nav
Browse files Browse the repository at this point in the history
For now, the route for groups was added to avoid having comment out the code. Will add the groups component in a future PR
  • Loading branch information
scottybollinger committed Aug 14, 2020
1 parent cd17432 commit b3ba9ed
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,14 @@ export const WorkplaceSearch: React.FC = () => {
<Route path={SETUP_GUIDE_PATH}>
<SetupGuide />
</Route>
<Route exact path="/">
<Overview />
</Route>
<Route>
<Layout navigation={<WorkplaceSearchNav />}>
<Switch>
<Route exact path="/">
<Route exact path="/groups">
{/* Will replace with groups component subsequent PR */}
<Overview />
</Route>
</Switch>
Expand Down

0 comments on commit b3ba9ed

Please sign in to comment.