My react `const Greeting = ({ name, handleClick }: GreetingProps) => { return ( <div> <h1>Hello, {name}!</h1> <button onClick={() => handleClick(name)}>Click me</button> </div> ); }; ` My WC: ` export const WCBasic = r2wc(Greeting, { props: { handleClick: "function", name: "string", }, });` My Angular template ` <wc-basic title="Welcome to the Web Component" handle-click="onWcClick($event)" ></wc-basic>` My Angular component ` onWcClick(event: any) { console.log('onWcClick', event); }` the error message: `Basic.tsx:27 Uncaught TypeError: handleClick is not a function`