Как определить типы функциональных компонентов
const Child: FC<ChildProps> = ({/* destructured props */}): ReactElement => {
/* function body */
};
REX OMIV
const Child: FC<ChildProps> = ({/* destructured props */}): ReactElement => {
/* function body */
};