// Path: Frontend/src/components/workspace-navigation/LeftRail/LeftRail.tsx import { For, Show, type JSX } from "solid-js"; import { useAppShellData } from "../../app-shell/data/app-shell.context"; import { type RailItem } from "../../app-shell/data/shell.data"; import styles from "./LeftRail.module.scss"; type RailEntryProps = { item: RailItem; label: string; abbreviation: string; personal?: boolean; }; const RailEntry = (props: RailEntryProps): JSX.Element => { return (