aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/watch/apps/Gaming.jsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-07-21 16:13:58 +0900
committernsfisis <nsfisis@gmail.com>2024-07-21 16:13:58 +0900
commita46f583437e9b66ebec6fa22e27567a71b17b497 (patch)
treef375449ee38de9701637fbe77c79111da9f76307 /frontend/src/watch/apps/Gaming.jsx
parent877c19ecbb2425d756f3cbafb1cf52f69279e92d (diff)
downloadphperkaigi-2025-albatross-a46f583437e9b66ebec6fa22e27567a71b17b497.tar.gz
phperkaigi-2025-albatross-a46f583437e9b66ebec6fa22e27567a71b17b497.tar.zst
phperkaigi-2025-albatross-a46f583437e9b66ebec6fa22e27567a71b17b497.zip
react router
Diffstat (limited to 'frontend/src/watch/apps/Gaming.jsx')
-rw-r--r--frontend/src/watch/apps/Gaming.jsx29
1 files changed, 0 insertions, 29 deletions
diff --git a/frontend/src/watch/apps/Gaming.jsx b/frontend/src/watch/apps/Gaming.jsx
deleted file mode 100644
index c844c46..0000000
--- a/frontend/src/watch/apps/Gaming.jsx
+++ /dev/null
@@ -1,29 +0,0 @@
-export default ({ problem, scoreA, codeA, scoreB, codeB }) => {
- return (
- <>
- <div style={{ display: 'flex', flexDirection: 'column' }}>
- <div style={{ display: 'flex', flex: 1, justifyContent: 'center' }}>
- {problem}
- </div>
- <div style={{ display: 'flex', flex: 3 }}>
- <div style={{ display: 'flex', flex: 3, flexDirection: 'column' }}>
- <div style={{ flex: 1, justifyContent: 'center' }}>
- {scoreA}
- </div>
- <div style={{ flex: 3 }}>
- <pre><code>{codeA}</code></pre>
- </div>
- </div>
- <div style={{ display: 'flex', flex: 3, flexDirection: 'column' }}>
- <div style={{ flex: 1, justifyContent: 'center' }}>
- {scoreB}
- </div>
- <div style={{ flex: 3 }}>
- <pre><code>{codeB}</code></pre>
- </div>
- </div>
- </div>
- </div>
- </>
- );
-};