일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 부모패딩
- vite
- es6
- createPortal
- 부모요소의 패딩 무시
- ?? #null병합연산자
- CustomHook
- DOM
- tailwindCSS
- 제어컴포넌트
- 서초구보건소 #무료CPR교육
- Carousel
- 화살표2개
- 함수형프로그래밍
- 문제해결
- accordian
- QueryClient
- react
- useQueryClient
- 조건부스타일
- ignore padding
- ㅡ
- transition
- parent padding
- BFC
- 리액트
- alias설정
- debouncing
- BlockFormattingContext
- twoarrow
Archives
- Today
- Total
프론트엔드 첫걸음
객체 타입의 prop 전개연산자로 전달하기 본문
자식 컴포넌트에 prop 을 객체로 전달 한 경우
자식 컴포넌트에서 해당 객체를 전개연산자로 받을 수 있다.
예)
부모컴포넌트에서 Input 이라는 자식컴포넌트의 input prop 에 값으로 객체를 전달함
return (
<form className={classes.form}>
<Input
label='Amount'
input={{
id: 'amount_' + props.id,
type: 'number',
min: '1',
max: '5',
step: '1',
defaultValue: '1',
}}
/>
<button>+ Add</button>
</form>
)
자식컴포넌트 Input에서 <input {...props.input} />
이와 같이 객체로 받음
import classes from './Input.module.css';
const Input = (props) => {
return (
<div className={classes.input}>
<label htmlFor={props.input.id}>{props.label}</label>
<input {...props.input} />
</div>
);
};
export default Input;
아래와 같음
<label htmlFor={props.input.id}>{props.label} </label>
<input
id = {props.input.id}
type = {props.input.type}
min = {props.input.min}
max = {props.input.max}
step = {props.input.step}
defaultValue = {props.input.defaultValue}
/>
'개발 공부 > React' 카테고리의 다른 글
useCallback으로 함수 재생성 방지하기 (0) | 2022.08.04 |
---|---|
성능개선 - react.memo로 불필요한 재평가 방지하기 (0) | 2022.08.04 |
[문제해결] useLocation - 주소에 따라서 활성화된 메뉴 스타일 변경 (0) | 2022.07.27 |
useImperativeHandle 과 forwardRef (0) | 2022.07.27 |
리액트 Hook 규칙 (0) | 2022.07.26 |