nextjs-game-components
Installation
SKILL.md
Next.js Game Components
This skill covers creating React components for the dev-quiz-battle game interface.
Step-by-step instructions
1. Component Structure
Use functional components with TypeScript:
import { type ReactNode } from "react";
type GameComponentProps = {
gameCode: string;
playerCount: number;
currentRound: number;
};