remix-syntax/app/routes/demos/about/index.tsx
Bradley Shellnut b373ebf09a Initial commit
2022-01-19 22:30:48 -08:00

17 lines
376 B
XML

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>
);
}