webzone/src/_includes/components/navbar.tsx
Sam Therapy 247b146e7d
Some checks failed
continuous-integration/drone Build is failing
Migrate to lume
WIP

Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-10-11 20:41:01 +02:00

17 lines
277 B
TypeScript

export default () => {
return (
<nav>
<ul>
<ul>
<li>
<a href="https://google.com">Test</a>
</li>
<li>
<a href="https://google.com">Test 2</a>
</li>
</ul>
</ul>
</nav>
);
};