Skip to content

Commit

Permalink
#11 feat: 마이페이지 블록 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamong0620 committed Aug 10, 2024
1 parent 2b7721e commit 1b0f431
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/components/ChallengeBlock.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import * as S from '../styles/MyPageStyled';

const ChallengeBlock = () => {
return (
<S.ChallengeLayout>
<S.ChallengeBoxTitle>대시보드 이름</S.ChallengeBoxTitle>
<S.CahllengeInfo>
<span>주기</span>
<span>&nbsp;|&nbsp;</span>
<span>참여인원</span>
<hr />
<p>챌린지 설명</p>
</S.CahllengeInfo>
</S.ChallengeLayout>
);
};
export default ChallengeBlock;

0 comments on commit 1b0f431

Please sign in to comment.