6 lines
201 B
JavaScript
6 lines
201 B
JavaScript
// Export `JSX` as a global for TypeScript.
|
|
import {runtime} from './runtime.js'
|
|
import {h} from './html.js'
|
|
|
|
export * from './jsx-automatic.js'
|
|
export const {Fragment, jsx, jsxs, jsxDEV} = runtime(h)
|