0
1
JRJose Romero
In the above code, the Component() function returns a <div> element with the following content:
<div> <h1>Hello World!</h1> <Link to="/route">New Route</Link>Library: remix
Shortcut: remix.component.simple.create
import { Link } from "remix";
export default function Component() {
return (
<div>
<h1>Hello World!</h1>
<Link to="/route">New Route</Link>
</div>
);
}