Refactor app.container to load current user.

This commit is contained in:
Patrick Fic
2019-12-09 19:49:43 -08:00
parent f919025159
commit 7de41f77ae
6 changed files with 122 additions and 39 deletions

View File

@@ -11,6 +11,9 @@ export default function Manage({match}) {
return (
<div>
<Route exact path={`${match.path}`} component={ManageShopContainer}/>
<Route exact path={`${match.path}/jobs`} component={ManageShopContainer}/>
<Route exact path={`${match.path}/jobs/:jobId`} component={ManageShopContainer}/>
</div>
)
}