import React from "react"; import { DropdownChit } from "@pretty-chitty/core"; export class PlayerAid extends DropdownChit { public turnCount = 0; renderLabel() { return `Current turn: ${this.turnCount}`; } renderBody() { return

This is a box

; } }