React 프로젝트에서 간단하게 줄 바꿈 처리하는 방법.
줄바꿈 할 부분을 \n으로 전달 후
해당 string 값이 전달되는 문자 태그의 CSS에
.description {
white-space: pre-line;
}
white-space: pre-line
CSS를 추가하면 \n을 통한 줄 바꿈 가능.
'Programming > React' 카테고리의 다른 글
[React] React Hooks : 2. useState (0) | 2022.08.01 |
---|---|
[React] React Hooks : 1. Hooks 란 무엇인가? (0) | 2022.08.01 |
[React/AOS] React에서 AOS(Animate On Scroll) 라이브러리 사용하기 (0) | 2022.07.12 |
[React] ReactDOM.render is no longer supported in React 18. Use createRoot instead. Until you switch to the new API 오류 (0) | 2022.06.28 |
[web3-react] Metamask/Wallet Connect 메타마스크 연결하기 Example (0) | 2022.06.23 |