vite-bugs/skeleton/app/routes/b.tsx

15 lines
300 B
TypeScript
Raw Permalink Normal View History

2024-03-16 22:48:55 +00:00
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>
);
}