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