import { playerColor, profile } from "../profile"; import { Stylable } from "./toolbox"; export default (props: { playerKey: string } & Stylable) => { return (

{profile(props.playerKey)()?.name}

); };