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
Example:
type myVariant = AAAAA | BBBBB module MyComponent = { @react.component let make = (~x: myVariant) => (x :> string)->React.string } <MyComponent x=
Autcomplete correctly suggests AAAAA and BBBBB. When I select AAAAA, I get
AAAAA
BBBBB
<MyComponent x={AAAAA}
The braces are unnecessary here, so I usually remove them again manually to get
<MyComponent x=AAAAA
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
Autcomplete correctly suggests
AAAAA
andBBBBB
. When I selectAAAAA
, I getThe braces are unnecessary here, so I usually remove them again manually to get
The text was updated successfully, but these errors were encountered: