3 lines
115 B
TypeScript

import { FC, PropsWithChildren } from "react";
export type FCC<P=Record<string, never>> = FC<PropsWithChildren<P>>