mirror of
https://github.com/TheRealOwenRees/chess-scribe-website.git
synced 2026-07-23 01:46:57 +00:00
11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import Contact from "#/pages/Contact.tsx";
|
|
|
|
export const Route = createFileRoute("/contact")({
|
|
component: RouteComponent,
|
|
});
|
|
|
|
function RouteComponent() {
|
|
return <Contact />;
|
|
}
|