mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
318 B
318 B
With solid-app-router
import { Link } from 'solid-app-router';
export default function Home() {
return (
<ul>
<li>
<Link href="/">Home</Link>
</li>
<li>
<Link href="/about">About us</Link>
</li>
</ul>
);
}