change react.tsx to react.ts

This commit is contained in:
Philipp Kühn
2021-09-17 13:55:06 +02:00
parent 1a43d2992f
commit de7f769ca3

19
demos/setup/react.ts Normal file
View File

@@ -0,0 +1,19 @@
import React from 'react'
import ReactDOM from 'react-dom'
import 'iframe-resizer/js/iframeResizer.contentWindow'
import { debug, splitName } from './helper'
import './style.scss'
export default function init(name: string, source: any) {
// @ts-ignore
window.source = source
document.title = name
const [demoCategory, demoName] = splitName(name)
import(`../src/${demoCategory}/${demoName}/React/index.jsx`)
.then(module => {
ReactDOM.render(React.createElement(module.default), document.getElementById('app'))
debug()
})
}