-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3. 타입스크립트로 리액트 상태 관리하기 · GitBook #92
Comments
혹시 강의 처럼 React.FormEvent 이런 타입이 아니라 React.FormEventHandler 타입으로 나온 경우 import React, { useState } from 'react'; type MyFormProps = { const MyForm: React.FC = ({ onSubmit }) => { const { name, description } = form; const onChange = (e: React.ChangeEvent) => { return ( export default MyForm; |
타입스크립트에 대해서 너무 재밋게 배우고 있습니다! 감사합니다 ㅎ |
3. 타입스크립트로 리액트 상태 관리하기 · GitBook
https://react.vlpt.us/using-typescript/03-ts-manage-state.html
The text was updated successfully, but these errors were encountered: