/** * The status bar (weave-workspace §1.2). * * Working directory, current selection, and data-as-of stamp. The * model is built by `statusBarModel`; this renders it. */ import type { StatusBarModel } from "./shell.model"; import { shortStamp } from "./shell.model"; export function StatusBar({ model }: { model: StatusBarModel }) { return ( ); }