Clean up registration page

This commit is contained in:
Robert Long 2022-01-04 17:09:27 -08:00
commit f4936f221f
13 changed files with 299 additions and 341 deletions

View file

@ -24,7 +24,7 @@ import {
} from "react-router-dom";
import * as Sentry from "@sentry/react";
import { OverlayProvider } from "@react-aria/overlays";
import { Home } from "./Home";
import { HomePage } from "./home/HomePage";
import { LoginPage } from "./LoginPage";
import { RegisterPage } from "./RegisterPage";
import { Room } from "./Room";
@ -45,7 +45,7 @@ export default function App({ history }) {
<OverlayProvider>
<Switch>
<SentryRoute exact path="/">
<Home />
<HomePage />
</SentryRoute>
<SentryRoute exact path="/login">
<LoginPage />