mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
14 lines
246 B
TypeScript
14 lines
246 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
|
|
export const Route = createFileRoute("/about")({
|
|
component: AboutComponent,
|
|
});
|
|
|
|
function AboutComponent() {
|
|
return (
|
|
<div className="p-2">
|
|
<h3>About</h3>
|
|
</div>
|
|
);
|
|
}
|