Skip to content

Commit

Permalink
feat :: 설명 줄 넘김
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Feb 28, 2024
1 parent 53a2dbe commit 6939bf7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/user/src/pages/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,14 @@ export const Project = () => {
</TopContainer>
<Description>
<span>프로젝트 내용</span>
{data.description}
{data.description?.split('\n').map((element) => {
return (
<>
{element}
<br />
</>
);
})}
</Description>
<LinkBox>
{(data.web_url || data.play_store_url || data.app_store_url) && <div>배포 링크</div>}
Expand Down

0 comments on commit 6939bf7

Please sign in to comment.