mirror of
https://github.com/BradNut/remix-syntax
synced 2025-09-08 17:40:28 +00:00
20 lines
457 B
TypeScript
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>
|
|
);
|
|
}
|