Created register page
This commit is contained in:
17
app/routes/register.tsx
Normal file
17
app/routes/register.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { Route } from "./+types/login";
|
||||
import RegisterPage from "../pages/register";
|
||||
|
||||
export function meta({}: Route.MetaArgs) {
|
||||
return [
|
||||
{ title: "Aindustries' casino" },
|
||||
{ name: "description", content: "Welcome to React Router!" },
|
||||
];
|
||||
}
|
||||
|
||||
export async function clientLoader() {}
|
||||
|
||||
export function HydrateFallback() {}
|
||||
|
||||
export default function Register() {
|
||||
return <RegisterPage />;
|
||||
}
|
||||
Reference in New Issue
Block a user