Skip to content
Snippets Groups Projects
Verified Commit 3d432b95 authored by Defendi Alberto's avatar Defendi Alberto
Browse files

Remove container.

parent fe0ad4c2
No related branches found
No related tags found
2 merge requests!56Refined auth flow and new website pages.,!48Merge personal area.
...@@ -8,9 +8,9 @@ import { ProfilePage } from 'components/AuthUser/Dashboard/ProfilePage/ProfilePa ...@@ -8,9 +8,9 @@ import { ProfilePage } from 'components/AuthUser/Dashboard/ProfilePage/ProfilePa
export const Dashboard: FC = () => { export const Dashboard: FC = () => {
const { path } = useRouteMatch(); const { path } = useRouteMatch();
return ( return (
<Container maxWidth="sm"> <>
<Route exact path={`${path}${AuthRoutes.home}`} component={HomePage} /> <Route exact path={`${path}${AuthRoutes.home}`} component={HomePage} />
<Route path={`${path}${AuthRoutes.profile}`} component={ProfilePage} /> <Route path={`${path}${AuthRoutes.profile}`} component={ProfilePage} />
</Container> </>
); );
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment