馃ぉ Currently type inference works for the following cases:
memo((props: ComponentProps) => {});
memo(forwardRef<HTMLElement, ComponentProps>(() => {}));
const Component = forwardRef<HTMLElement, ComponentProps>(() => {});
memo<ComponentProps>(Component);
馃く It would be cool for it to also work for this pls:
const Component = forwardRef<HTMLElement, ComponentProps>(() => {});
memo(Component);
馃ぉ Currently type inference works for the following cases:
馃く It would be cool for it to also work for this pls: