// Path: Frontend/src/components/shell/MobileBottomNav/MobileBottomNav.tsx import { For, type JSX } from "solid-js"; import { useAppShellData } from "../data/app-shell.context"; import { mobileBottomNavItems, type MobileBottomNavItem } from "../data/shell.data"; import styles from "./MobileBottomNav.module.scss"; type MobileBottomNavProps = { isBrowseOpen: boolean; onBrowseToggle: VoidFunction; }; const MobileNavEntry = (props: { item: MobileBottomNavItem; isActive: boolean; onSelect?: VoidFunction; }): JSX.Element => { const Icon = props.item.icon; return ( ); }; export const MobileBottomNav = (props: MobileBottomNavProps): JSX.Element => { const appShellData = useAppShellData(); return ( ); };