12 lines
282 B
TypeScript
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>
|
|
);
|
|
}
|