vite-bugs/skeleton/app/routes/b.tsx
2024-03-16 23:48:55 +01:00

15 lines
300 B
XML

import { Link } from "@remix-run/react";
export default function C(props) {
return (
<div>
<h1>C</h1>
<p>
This is the C route. It is a function component that returns a div with
an h1 and a paragraph.
</p>
<Link to="/a">Go to A</Link>
</div>
);
}