We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14f7640 commit 7a168b1Copy full SHA for 7a168b1
analysis/examples/example-project/src/syntax/sample-highlighting.res
@@ -54,9 +54,17 @@ module SomeComponent = {
54
) => {
55
React.null
56
}
57
+
58
+ module Nested = {
59
+ @react.component
60
+ let make = (~children) => {
61
+ <> {children} </>
62
+ }
63
64
65
66
let jsx =
67
<div>
68
<SomeComponent someProp=123 otherProp="hello" thirdProp=Value fourth=#AnotherMember />
69
+ <SomeComponent.Nested> {React.string("Nested")} </SomeComponent.Nested>
70
</div>
0 commit comments