aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/watch/apps
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/watch/apps')
-rw-r--r--frontend/src/watch/apps/Connecting.jsx7
-rw-r--r--frontend/src/watch/apps/Failed.jsx7
-rw-r--r--frontend/src/watch/apps/Gaming.jsx29
-rw-r--r--frontend/src/watch/apps/Waiting.jsx7
4 files changed, 0 insertions, 50 deletions
diff --git a/frontend/src/watch/apps/Connecting.jsx b/frontend/src/watch/apps/Connecting.jsx
deleted file mode 100644
index 464af23..0000000
--- a/frontend/src/watch/apps/Connecting.jsx
+++ /dev/null
@@ -1,7 +0,0 @@
-export default () => {
- return (
- <div>
- 接続中です......
- </div>
- );
-}
diff --git a/frontend/src/watch/apps/Failed.jsx b/frontend/src/watch/apps/Failed.jsx
deleted file mode 100644
index f96e999..0000000
--- a/frontend/src/watch/apps/Failed.jsx
+++ /dev/null
@@ -1,7 +0,0 @@
-export default () => {
- return (
- <div>
- エラー
- </div>
- );
-}
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>
- </>
- );
-};
diff --git a/frontend/src/watch/apps/Waiting.jsx b/frontend/src/watch/apps/Waiting.jsx
deleted file mode 100644
index 27fdd76..0000000
--- a/frontend/src/watch/apps/Waiting.jsx
+++ /dev/null
@@ -1,7 +0,0 @@
-export default () => {
- return (
- <div>
- 対戦相手が現れるのを待っています......
- </div>
- );
-}