diff --git a/react_webgame/main/NumberBaseball.jsx b/react_webgame/main/NumberBaseball.jsx
index fca1cfac..73629ab5 100644
--- a/react_webgame/main/NumberBaseball.jsx
+++ b/react_webgame/main/NumberBaseball.jsx
@@ -35,13 +35,23 @@ class NumberBaseball extends Component {
시도: {this.state.tries.length}
- {['사과', '바나나', '포도', '귤', '수박'].map((v) => {
+ {[
+ { fruit: '사과', description: '빨개'},
+ { fruit: '바나나', description: '길어'},
+ { fruit: '포도', description: '맛있다'},
+ { fruit: '귤', description: '시다'},
+ { fruit: '수박', description: '달다'},
+ ].map((v) => {
return (
- - {v}
+ - {v.fruit} - {v.description}
)
- })
+ })}
- }
+ {/* - 사과 - 빨개
+ - 바나나 - 길어
+ - 포도 - 맛있다
+ - 귤 - 시다
+ - 수박 - 달다
*/}
>
)