250x250
반응형
- Today
- Total
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
- 산업기능요원 훈련소
- 리액트 알림
- resolved to branch.
- 자바스크립트
- 오라클클라우드
- react toast
- 사회복무요원 훈련소
- The above error occurred in the
- 훈련소 후기
- 리액트 라이프사이클
- react life sycle
- NextJS
- no-use-before-define
- 공익 훈련소
- query param
- 비동기 병렬처리
- 오블완
- styled-component
- 자바스크립트 순수함수
- next.js toast
- localStorage
- server action
- angular
- 훈련소
- svgr
- react
- 리액트
- useformstatus
- useRouter
- sessionStorage
Archives
목록onChange TypeScript (1)
아 그거 뭐였지
[React] Styled-Component onChange TypeScript , useState
로그인 기능을 구현하던도중 아이디와 패스워드를 받아야 하였고, input태그가 중복이 되어 재사용성을 위해 input 태그를 Styled-Component로 따로 빼서 작업을 하였다. 재사용성을 위해 분리한것까지는 좋았지만, 타입정의와 props를 처리하는데 있어 삽질을 했다. onChange 이벤트로 입력값을 받아오려했지만 받아오지못하고 타입 오류가 났었다. 타입정의를 안해주어서 생긴 문제였는데 바로 코드로 확인해보자. //Input Component import React from "react"; import styled from "styled-components"; type InputProps = { width: number; fontSize: number; onChange?: (e: any) =>..
Front-End
2022. 7. 16. 21:07