We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I currently have the following code, and it breaks when I run parse with the error No suitable component definition found
No suitable component definition found
import React from 'react'; const Group = React.forwardRef< HTMLDivElement, React.HTMLAttributes<HTMLDivElement> >((props, ref) => { return <div {...props} ref={ref} />; }); type TInput = React.ForwardRefExoticComponent< React.HTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement> > & {Group: typeof Group}; const Input = React.forwardRef< HTMLInputElement, React.HTMLAttributes<HTMLInputElement> >((props, ref) => { return <input {...props} ref={ref} />; }) as TInput; Input.Group = Group; export default Input;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I currently have the following code, and it breaks when I run parse with the error
No suitable component definition found
The text was updated successfully, but these errors were encountered: