import { Link } from "remix";
export default function Component() {
return (
<div>
<h1>Hello World!</h1>
<Link to="/route">A Route</Link>
</div>
);
};
Default Component
Simple component in remix with a link.
Shortcut: remix.component.simple
0 Comments
Add Comment
Log in to add a comment