From 110b31e017f0460fb4de246a9e9996978e0f5761 Mon Sep 17 00:00:00 2001 From: Lee sang Yeop Date: Sat, 7 Oct 2023 19:59:40 +0900 Subject: [PATCH] =?UTF-8?q?Feat:=20=EC=B1=84=ED=8C=85=EC=97=90=20=ED=95=84?= =?UTF-8?q?=EC=9A=94=ED=95=9C=20=EB=8D=B0=EC=9D=B4=ED=84=B0=EB=A5=BC=20pro?= =?UTF-8?q?ps=20=EB=A1=9C=20=EB=84=98=EA=B2=A8=EC=A3=BC=EB=8F=84=EB=A1=9D?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/RoundCheckIn/CheckInPage.tsx | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/src/components/RoundCheckIn/CheckInPage.tsx b/src/components/RoundCheckIn/CheckInPage.tsx index 92d4be2..cc37f99 100644 --- a/src/components/RoundCheckIn/CheckInPage.tsx +++ b/src/components/RoundCheckIn/CheckInPage.tsx @@ -1,5 +1,5 @@ import Icon from '@components/Icon'; -import { MatchPlayerScoreInfos } from '@components/RoundCheckIn'; +import { MatchMessages, MatchPlayerScoreInfos } from '@components/RoundCheckIn'; import CallAdminChat from '@components/RoundCheckIn/CallAdminChat'; import styled from '@emotion/styled'; import { Client } from '@stomp/stompjs'; @@ -9,9 +9,18 @@ interface CheckInPageProps { client: Client | undefined; matchId: string; players: MatchPlayerScoreInfos[]; + matchMessage: MatchMessages[]; + requestUser: number; } -const CheckInPage = ({ ParticipantCheckin, client, matchId, players }: CheckInPageProps) => { +const CheckInPage = ({ + ParticipantCheckin, + client, + matchId, + players, + matchMessage, + requestUser, +}: CheckInPageProps) => { return ( @@ -24,7 +33,13 @@ const CheckInPage = ({ ParticipantCheckin, client, matchId, players }: CheckInPa - + );