import { FC } from 'react'; /** * */ export function createFC
(componentFn: FC
, statics: T): FC
& T { return Object.assign(componentFn, statics); }