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