interface BottomNavProps {
currentPath: () => string;
}
function HomeIcon() {
return (
);
}
function GearIcon() {
return (
);
}
export function BottomNav(props: BottomNavProps) {
const path = () => props.currentPath();
const isHome = () => path() === "/";
const isSettings = () =>
path().startsWith("/einstellungen") || path().startsWith("/settings");
return (
);
}