// Path: Frontend/src/components/shell/LeftRail/LeftRail.tsx import { For, Show, type JSX } from "solid-js"; import { railItems, type RailItem } from "../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 (