import { useGame } from '../../contexts/game-context' import type { GameEntity } from '../../types' export default function AbstractChoices () { const { clickTarget, allClickable, undoStep, currentMoveTargets } = useGame() const abstractChoices = [...allClickable].filter( (c) => (c as GameEntity).abstract ) as GameEntity[] return (