[TypeScript] setState props로 넘길 때 타입 지정하기
2023. 7. 3. 22:10ㆍ개발 공부/TypeScript
interface ILibrary {
book:string
setBook: React.Dispatch<React.SetStateAction<string>>
}
해결 방법:
- React.Dispatch<React.SetStateAaction<string>> 와 같이 명시해주면 된다!