15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
|
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>
|
||
|
);
|
||
|
}
|