"use client"; import ParenthesesPreparationClient from "@/components/game/ParenthesesPreparationClient"; import { useGameStore } from "@/store/gameStore"; export default function NumberParenthesesClient() { const selectedProblemCount = useGameStore( (state) => state.selectedProblemCount, ); const setProblemCount = useGameStore((state) => state.setProblemCount); const initSession = useGameStore((state) => state.initSession); return ( initSession(selectedProblemCount)} /> ); }