Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- intellij
- Spring-Framework
- 리액트
- 웹 게임을 만들며 배우는 리액트
- 모던자바스크립트
- node.js로 로그인하기
- 계산맞추기 게임
- react오류
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- Python
- react
- vs code 내 node
- spring-boot
- DB Browser
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 거북이 대포 게임
- 모두의 파이썬
- Concurrently
- 따라하며 배우는 노드 리액트 기본 강의
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 인프런
- props
- 노드에 리액트 추가하기
- JS 개념
- googleColaboratory
- Colaboratory 글자 깨짐
- 자바스크립트
- node.js 설치
- 타자 게임 만들기
- Do it 자바스크립트 + 제이쿼리 입문
Archives
- Today
- Total
프로그래밍 삽질 중
인라인 스타일링 시 리렌더링 문제(styled-components를 사용하는 이유) 본문
* antd로 디자인 중, 일부 항목은 스타일을 변경해야 함
* (오류) 직접 인라인 스타일링 하는 경우
▶ 문제점 : test 함수 내 return 부분 중 div 태그가 리렌더링 됨(변경된 부분이 계속 있다고 인식함)
→ div 태그가 계속 리렌더링됨
▶ 해결책 1 : styled-components 사용
▶ 해결책 2 : style 할 부분을 useMemo로 감싸기
(useMemo 설명 : https://ba-gotocode131.tistory.com/242)
const test = () => {
return (
<>
<div style={{marginTop: 10px}}> //계속 리렌더링됨
<Button type="primary" htmlType="submit" loading={false}>
로그인
</Button>
<Link href="/signup">
<Button>회원가입</Button>
</Link>
</div>
</>
)
}
export default test
* 해결책 1 : styled-component 사용
▶ styled-components 설치
//설치
npm i styled-components
//불러오기
import styled from "styled-components";
▶ Button 부분에 styled-components 적용
import styled from "styled-components";
const ButtonTest = styled.div` //`` 사용
margin-top: 10px;
`
const test = () => {
return (
<>
<ButtonTest>
<Button type="primary" htmlType="submit" loading={false}>
로그인
</Button>
<Link href="/signup">
<Button>회원가입</Button>
</Link>
</ButtonTest>
</>
)
}
export default test
* 해결책 2 : style 할 부분을 useMemo로 감싸기
▶ useMemo : 복잡한 함수 결과값을 리턴
▶ 두 번째 인자([ ])가 바뀌지 않는 한 다시 실행되지 않음
▶ 예시는 두 번째 인자를 비워놓은 상태이므로 한 번만 기억하고 다시 바뀌지 않음
import React, { useMemo } from "react";
const style = useMemo(() => ({ marginTop: 10 }), [])
const test = () => {
return (
<>
<div style={style}>
<Button type="primary" htmlType="submit" loading={false}>
로그인
</Button>
<Link href="/signup">
<Button>회원가입</Button>
</Link>
</div>
</>
)
}
export default test
'과거 프로그래밍 자료들 > React' 카테고리의 다른 글
(next.js + redux toolkit 시리즈 1) redux 설명(yotube 강의) (0) | 2022.10.12 |
---|---|
Next.js와 리덕스 설명(로그인, 로그아웃) (0) | 2022.10.06 |
[웹 게임을 만들며 배우는 React] - 지뢰찾기(1), contextAPI (0) | 2022.09.30 |
[웹 게임을 만들며 배우는 React] - 틱택토, useReducer, useCallback (0) | 2022.09.29 |
[웹 게임을 만들며 배우는 React] - 로또추첨기, useEffect, useCallback (1) | 2022.09.29 |