import React, { FC, ReactElement } from 'react'; type ChildProps = { name: string, id: number, bio?: string, } const Child: FC<ChildProps> = ({/* destructured props */}): ReactElement => { /* function body */ };
TS에서 화살표 함수로 컴포넌트 생성
Tags
부가설명
import {FC} from 'react';