mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 13:11:23 +00:00
12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function Quicklinks() {
|
|
return (
|
|
<div>
|
|
Quicklinks Block
|
|
<Link href="/tests">Tests</Link>
|
|
<Link href="/diseases">Diseases And Conditions</Link>
|
|
</div>
|
|
);
|
|
}
|