-
[REACT] 이미지 업로드 버튼 꾸미고 연결하기!React, Next 2023. 4. 11. 20:32
const PostForm = () => { const imageInput = useRef(); const onClickImageUpload = useCallback(() => { imageInput.current.click() }, [imageInput.current]) return ( <> <input type="file" multiple hidden ref={imageInput} /> <Button onClick={onClickImageUpload}>이미지 업로드</Button> </> ) }
'React, Next' 카테고리의 다른 글
[REACT] 퍼블리싱용 라이브러리 모음 (0) 2023.04.11 [REACT] PropTypes에서 객체 키값 여러개 정의할 때 shape() (0) 2023.04.11 [REACT] indent(들여쓰기) Prettier, ESLint 설정 (0) 2023.04.05 로컬환경에서 실행? 개발환경에서 실행? (0) 2022.09.29 datepicker 시작~끝 날짜 '총 몇일'인지 계산하기 (0) 2022.09.21