diff --git a/src/tictactoe/Board.tsx b/src/tictactoe/Board.tsx index c8dd082..b9632f0 100644 --- a/src/tictactoe/Board.tsx +++ b/src/tictactoe/Board.tsx @@ -1,4 +1,5 @@ import React from "react"; +import { motion, AnimatePresence } from "framer-motion"; interface BoardProps { board: string[][]; @@ -29,7 +30,7 @@ export default function Board({ const isMyTurn = gameReady && myIndex !== -1 && turn === myIndex; // ------------------------------- - // 🟦 HEADER STATUS FIXED + // STATUS // ------------------------------- let status; if (!gameReady) { @@ -43,16 +44,37 @@ export default function Board({ } return ( -