import { Box } from "../../ui-utils"; import { CharacterValue } from "../common"; type Props = { name: string; value: CharacterValue; }; export const CharacterRow = (props: Props) => { const { name, value } = props; return (
{value.value}{value.stack.map((v, i) => (