From a46f583437e9b66ebec6fa22e27567a71b17b497 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 21 Jul 2024 16:13:58 +0900 Subject: react router --- frontend/src/game/apps/Gaming.jsx | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 frontend/src/game/apps/Gaming.jsx (limited to 'frontend/src/game/apps/Gaming.jsx') diff --git a/frontend/src/game/apps/Gaming.jsx b/frontend/src/game/apps/Gaming.jsx deleted file mode 100644 index bf47860..0000000 --- a/frontend/src/game/apps/Gaming.jsx +++ /dev/null @@ -1,24 +0,0 @@ -export default ({ problem, onCodeChange, score }) => { - const handleTextChange = (e) => { - onCodeChange({ code: e.target.value }); - }; - - return ( -
-
-
- {problem} -
-
- {score == null ? 'Score: -' : `Score: ${score} byte`} -
-
-
-