remix-syntax/app/routes/demos/about/index.tsx

18 lines
376 B
TypeScript
Raw Normal View History

2022-01-20 06:30:48 +00:00
import { Link } from "remix";
export default function AboutIndex() {
return (
<div>
<p>
You are looking at the index route for the <code>/about</code> URL
segment, but there are nested routes as well!
</p>
<p>
<strong>
<Link to="whoa">Check out one of them here.</Link>
</strong>
</p>
</div>
);
}