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