Files
lab3/app/pages/home/HomePage.tsx
2026-03-05 16:08:09 +01:00

12 lines
282 B
TypeScript

import { Link } from "react-router";
export function HomePage() {
return (
<div className="flex flex-col items-center justify-center min-h-[90vh]">
<p>Hello React!</p>
<Link to="/person/John" className="text-blue-500 mt-10">Go to Person</Link>
</div>
);
}