diff options
Diffstat (limited to '')
-rw-r--r-- | src/options.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.zig b/src/options.zig index a39c9fc6c..08eb7b4b7 100644 --- a/src/options.zig +++ b/src/options.zig @@ -1048,8 +1048,8 @@ pub const JSX = struct { } pub const Defaults = struct { - pub const Factory = &[_]string{"React.createElement"}; - pub const Fragment = &[_]string{"React.Fragment"}; + pub const Factory = &[_]string{ "React", "createElement" }; + pub const Fragment = &[_]string{ "React", "Fragment" }; pub const ImportSourceDev = "react/jsx-dev-runtime"; pub const ImportSource = "react/jsx-runtime"; pub const JSXFunction = "jsx"; |