🤩 Currently type inference works for the following cases: ```js 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: ```js const Component = forwardRef<HTMLElement, ComponentProps>(() => {}); memo(Component); ```