import { Colors } from "@blueprintjs/core"; import { RendererProps } from "../../types"; import { RS } from "../common"; import { CharacterRow } from "./character-row"; import { TopBar } from "./topbar"; /** Common border color for dark and light, using transparency */ export const BorderColor = Colors.GRAY3 + "55"; const styles = { placeholderDiv: { height: "100%", width: "100%", display: "flex", justifyContent: "center", alignItems: "center", fontSize: "1.2em", }, rootContainer: { height: "100%", display: "flex", flexDirection: "column" as "column", }, topBarContainer: { borderBottom: "1px solid " + BorderColor, padding: 10, }, mainContainer: { flex: 1, minHeight: 0, overflowY: "auto" as "auto", }, }; export const Renderer = ({ state }: RendererProps) => { if (state == null) return (
Run some code to see the stage!
); return (
{Object.keys(state.characterBag).map((name) => ( ))}
); return null; };