TSX
JSX + TypeScript. React 컴포넌트에 props 타입이 자동 체크된다.
type Props = { title: string };
const Btn = ({title}: Props) => <button>{title}</button>;TypeScript + JSX. 타입 안전한 React 컴포넌트의 표준.
JSX + TypeScript. React 컴포넌트에 props 타입이 자동 체크된다.
type Props = { title: string };
const Btn = ({title}: Props) => <button>{title}</button>;