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

20 lines
457 B
TypeScript

import { Link } from "remix";
export default function AboutIndex() {
return (
<div>
<p>
Whoa, this is a nested route! We render the <code>/about</code> layout
route component, and its <code>Outlet</code> renders our route
component. 🤯
</p>
<p>
<strong>
<Link to="..">
Go back to the <code>/about</code> index.
</Link>
</strong>
</p>
</div>
);
}