Add tab bar

This commit is contained in:
Jakob Moser 2025-11-13 19:42:27 +01:00
parent 30b9bdf37c
commit b3cefa32b7
Signed by: jakob
GPG Key ID: 3EF2BA2851B3F53C

View File

@ -0,0 +1,16 @@
import { Tab } from "./Tab.js"
export default {
view() {
return m("nav", [
m(Tab, {
href: "/all",
label: "Alle",
}),
m(Tab, {
href: "/favorites",
label: "Favoriten",
}),
])
},
}