Created register page

This commit is contained in:
2025-03-17 20:01:23 +01:00
parent 83eb5656c1
commit 46625b03a8
2 changed files with 71 additions and 0 deletions

17
app/routes/register.tsx Normal file
View 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 />;
}