Skip to content

Commit 150cc63

Browse files
committed
진행 방법 추가
1 parent 149aa84 commit 150cc63

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

src/modules/Bingo/BingoPresenter.tsx

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {
88
Button,
99
FormControl,
1010
Typography,
11+
Box,
1112
} from "@mui/material";
1213
import { styled } from "@mui/system";
1314
import LongTextBox from "./components/LongTextBox.tsx";
@@ -177,11 +178,28 @@ const BingoPresenter = (props: BingoPresenterProps) => {
177178
) : (
178179
<Wrapper>
179180
<MyInfo>My Id: {props.myID}</MyInfo>
180-
<Typography>자기가 하고 있는 일 소개</Typography>
181-
<Typography>올해 이룬 것, 내년 목표</Typography>
182-
<Typography>최근 관심사(일, 취미 등)</Typography>
183-
<Typography>좋아하는 음식</Typography>
184-
<Typography>최근에 듣는 노동요</Typography>
181+
<Box
182+
sx={{
183+
display: "flex",
184+
alignItems: "center",
185+
padding: "8px",
186+
borderRadius: "8px",
187+
backgroundColor: "white",
188+
boxShadow: "0 4px 4px rgba(0, 0, 0, 0.3)",
189+
gap: "12px",
190+
}}
191+
>
192+
행사장 내 부스 방문 숨겨진 보물 QR 찍기 사람과 네트워킹 후 빙고 교환
193+
빙고판을 다 채우면 미션2 클리어!
194+
</Box>
195+
<pre>
196+
<Typography>자기가 하고 있는 일 소개</Typography>
197+
<Typography>올해 이룬 것, 내년 목표</Typography>
198+
<Typography>최근 관심사(일, 취미 등)</Typography>
199+
<Typography>좋아하는 음식</Typography>
200+
<Typography>최근에 듣는 노동요</Typography>
201+
</pre>
202+
185203
{/* {props.userSelectedWords.map((word) => (
186204
<LongTextBox key={word} text={word} />
187205
))} */}

0 commit comments

Comments
 (0)