diff --git a/examples/normal/src/Foo/index.tsx b/examples/normal/src/Foo/index.tsx index a98bad9848..eafa7fbd4a 100644 --- a/examples/normal/src/Foo/index.tsx +++ b/examples/normal/src/Foo/index.tsx @@ -24,6 +24,8 @@ const Foo: FC<{ children: React.ReactNode; onConfirm: (output: { children: any[] }) => void; dom: HTMLElement; + // eslint-disable-next-line @typescript-eslint/ban-types + func: Function; }> = (props) => { return <>{props.title}; };