formhero/examples/common.tsx

9 lines
257 B
TypeScript
Raw Permalink Normal View History

2023-01-31 00:26:27 +00:00
import React from 'react'
import { createRoot } from 'react-dom/client'
export function mount(Node: React.FC) {
const section = window.document.createElement('section')
window.document.body.appendChild(section)
createRoot(section).render(<Node />)
}