Skip to content

Commit

Permalink
style: visitorId 위치 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed May 12, 2024
1 parent db2b2f9 commit 2ee60a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/BoothListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ const BoothListPage: React.FC = () => {
return (
<PageContainer>
<MainContent>
<p>{visitorId}</p>
{/*<Map />*/}
<VisibleList variants={listVariants} initial="hidden" animate="visible">
{lists.map((name, index) => {
return <Booth index={index} name={name} heart={heart} />;
})}
</VisibleList>
<p>{visitorId}</p>
</MainContent>
</PageContainer>
);
Expand Down

0 comments on commit 2ee60a7

Please sign in to comment.