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 |
Tags
- storybook
- designpatterns
- Redux
- css
- React
- Spring
- JavaSpring
- ReactHooks
- Gin
- 오블완
- Chakra
- backend
- java
- javascript
- hook
- RTK
- react-hook-form
- springboot
- go
- satisfiles
- golang
- JPA
- frontend
- tanstackquery
- 티스토리챌린지
- component
- typescript
- 웹애플리케이션서버
- test
Archives
- Today
- Total
목록2024/11/20 (1)
bkdragon's log
forwardRef
React에서 useRef로 DOM 요소에 대한 참조를 얻을 수 있다. 근데 ref는 컴포넌트에는 사용할 수 없는데 그 이유는 컴포넌트는 DOM 요소를 반환하는 함수이기 때문이다. 그래서 컴포넌트에 ref를 넘기려면 forwardRef 가 필요하다.import React, { forwardRef, Ref } from 'react';interface MyInputProps extends React.InputHTMLAttributes {}const MyInput = forwardRef( (props, ref: Ref) => { return ; });MyInput.displayName = "MyInput";export default MyInput;forwardRef로 감싸서 컴포넌트를 만들면 된다. ..
React
2024. 11. 20. 20:54