3 lines
115 B
TypeScript
3 lines
115 B
TypeScript
import { FC, PropsWithChildren } from "react";
|
|
|
|
export type FCC<P=Record<string, never>> = FC<PropsWithChildren<P>> |