fix login page style

This commit is contained in:
João Geonizeli
2022-07-26 15:00:38 -03:00
parent e24449adbc
commit 1aa0ee03b4
7 changed files with 30 additions and 34 deletions

View File

@@ -3,7 +3,7 @@ import { Switch, Route, Redirect } from "react-router-dom";
import { Dashboard } from '../pages/dashboard'
import { List, New, Show, Review, Edit } from "../pages/question";
import { Profile, SignIn } from "../pages/session";
import { Profile } from "../pages/session";
import { QuestionRoutePaths, SessionRoutePaths, DashboardRoutePaths } from './paths'
export const PrivateRoutes = () => (
@@ -20,9 +20,3 @@ export const PrivateRoutes = () => (
<Route exact path={QuestionRoutePaths.review} component={Review} />
</Switch>
);
export const PublicRoutes = () => (
<Switch>
<Route path={SessionRoutePaths.signIn} component={SignIn} />
</Switch>
);