const MyComponent = () => {....
return(
<ChallengeInfo
index={2}
title="Schedule"
content={"Sep 11st -\nOct 11st"}
/>)}
const ChallengeInfo = ({ index, title, content }: IndexTitleContentProps) => {
return (
<ChallengeInfoWrapper index={index}>
<ChallengeInfoTitle>{title}</ChallengeInfoTitle>
<ChallengeInfoContent style={{ whiteSpace: "pre-line" }}>
{content}
</ChallengeInfoContent>
</ChallengeInfoWrapper>
);
};
대충 요런 구조였다.
원래는 아무리해도 content의 내용에 줄바꿈이 적용이 안됐는데 이렇게
style={{ whiteSpace: "pre-line" }}
을 해주니까 content의 \n이 잘 작동했다.
'Front-End > HTML_CSS' 카테고리의 다른 글
[Typescript, CSS] Circular Progress Bar 만들기 (2) | 2023.11.06 |
---|---|
[CSS] CSS-Flex Link Archive (0) | 2023.11.06 |
[CSS] position: fixed일 때 상하스크롤이 안되는 문제 해결 (0) | 2023.06.12 |
[HTML/CSS] 220318 학습일기 (0) | 2023.03.19 |
[HTML/CSS] 220317 학습일기 (0) | 2023.03.18 |