import { Colors } from "@blueprintjs/core"; import { ChefRS } from "../types"; import { BakingDishColumn, MixingBowlColumn } from "./bowl-dish-columns"; import { IngredientsPane } from "./ingredients-pane"; import { BorderColor } from "./utils"; const styles = { ingredientsPane: { width: 200, flexShrink: 0, overflowY: "auto" as "auto", borderRight: "1px solid " + BorderColor, }, stacksPane: { padding: 5, flexGrow: 1, display: "flex", height: "100%", overflowX: "auto" as "auto", }, stackColumn: { width: 125, flexShrink: 0, }, }; export const KitchenDisplay = ({ state, }: { state: ChefRS["currentKitchen"]; }) => { return (