We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdd7cfa commit d4764d6Copy full SHA for d4764d6
src/index.tsx
@@ -1,3 +1,4 @@
1
+import * as forgo from "forgo";
2
import { ForgoRenderArgs, mount } from "forgo";
3
4
type AppProps = {};
tsconfig.json
@@ -9,8 +9,9 @@
9
"allowSyntheticDefaultImports": true,
10
"sourceMap": true,
11
"strict": true,
12
- "jsx": "react-jsx",
13
- "jsxImportSource": "forgo"
+ "jsx": "react",
+ "jsxFactory": "forgo.createElement",
14
+ "jsxFragmentFactory": "forgo.Fragment"
15
},
16
"include": ["src/**/*.ts", "src/**/*.tsx"]
17
}
0 commit comments