Cara mendefinisikan jenis komponen fungsional

const Child: FC<ChildProps> = ({/* destructured props */}): ReactElement => { 
  /* function body */ 
};
REX OMIV