Some checks failed
Deploy to VPS (dist) / deploy (push) Has been cancelled
Co-authored-by: Hewston Fox <hewstonfox@gmail.com> Co-authored-by: autofix <noreply@autofix.ci> Reviewed-on: #1
6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
|
|
export const Route = createFileRoute("/about")({
|
|
component: () => <div className="p-2">Hello from About!</div>,
|
|
});
|