import TerminalTabs from "../terminal/TerminalTabs"; import { useAppState } from "../../store/appState"; export default function TopBar() { const { dockerAvailable, imageExists } = useAppState(); return (
); } function StatusDot({ ok, label }: { ok: boolean; label: string }) { return ( {label} ); }