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 cdcd333 commit fbfc39dCopy full SHA for fbfc39d
jscomp/syntax/src/jsx_common.ml
@@ -9,8 +9,6 @@ type jsxConfig = {
9
mutable hasComponent: bool;
10
}
11
12
-let mkModuleAccessName config = String.capitalize_ascii config.module_
13
-
14
(* Helper method to look up the [@react.component] attribute *)
15
let hasAttr (loc, _) =
16
match loc.txt with
jscomp/syntax/src/jsx_v4.ml
@@ -4,7 +4,7 @@ open Asttypes
4
open Parsetree
5
open Longident
6
7
-let moduleAccessName = Jsx_common.mkModuleAccessName
+let moduleAccessName config = String.capitalize_ascii config.Jsx_common.module_
8
let nolabel = Nolabel
0 commit comments