Files
honey-fe/src/routes/about.tsx
Voldemar 74cb37942e
Some checks failed
Deploy to VPS (dist) / deploy (push) Has been cancelled
feat: setup libs
Co-authored-by: Hewston Fox <hewstonfox@gmail.com>
Co-authored-by: autofix <noreply@autofix.ci>
Reviewed-on: #1
2026-03-08 23:30:37 +00:00

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>,
});