Skip to content

Commit d4764d6

Browse files
committedAug 20, 2021
Update forgo to v2
1 parent bdd7cfa commit d4764d6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎src/index.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import * as forgo from "forgo";
12
import { ForgoRenderArgs, mount } from "forgo";
23

34
type AppProps = {};

‎tsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
"allowSyntheticDefaultImports": true,
1010
"sourceMap": true,
1111
"strict": true,
12-
"jsx": "react-jsx",
13-
"jsxImportSource": "forgo"
12+
"jsx": "react",
13+
"jsxFactory": "forgo.createElement",
14+
"jsxFragmentFactory": "forgo.Fragment"
1415
},
1516
"include": ["src/**/*.ts", "src/**/*.tsx"]
1617
}

0 commit comments

Comments
 (0)
Please sign in to comment.