import React from "react"; import { Text } from "@blueprintjs/core"; import { Box } from "../../ui-utils"; const styles = { charChip: { margin: "0 5px", }, questionText: { marginLeft: 30, marginRight: 10, }, }; type Props = { charactersOnStage: string[]; currSpeaker: string | null; questionState: boolean | null; }; export const TopBar = (props: Props) => { const { charactersOnStage, currSpeaker, questionState } = props; const characterChips = charactersOnStage.length === 0 ? ( The stage is empty ) : ( charactersOnStage.map((character) => ( {character} )) ); return (
{characterChips} {questionState != null && ( <> Answer to question: {questionState ? "yes" : "no"} )}
); };