houdini/lib/generators/react/packroot/templates/page.tsx.erb

14 lines
511 B
Text
Raw Normal View History

2018-03-29 14:10:27 -05:00
// License: LGPL-3.0-or-later
// require a root component here. This will be treated as the root of a webpack package
import Root from "../src/components/common/Root"
2018-06-20 14:22:28 -05:00
import <%=file_name.camelize %> from "../src/components/<%= file_name.underscore%>/<%= file_name.camelize%>"
import * as ReactDOM from 'react-dom'
import * as React from 'react'
function LoadReactPage(element:HTMLElement) {
2018-06-20 14:22:28 -05:00
ReactDOM.render(<Root><<%=file_name.camelize %>/></Root>, element)
}
2018-03-29 14:10:27 -05:00
(window as any).LoadReactPage = LoadReactPage