Your IP : 216.73.216.215


Current Path : /home/flapst5/ekmtoronto.com/wp-content/plugins/code-snippets/js/
Upload File :
Current File : /home/flapst5/ekmtoronto.com/wp-content/plugins/code-snippets/js/import.tsx

import React from 'react'
import { createRoot } from 'react-dom/client'
import { ImportApp } from './components/Import/ImportApp'

const importContainer = document.getElementById('import-container')

if (importContainer) {
	const root = createRoot(importContainer)
	root.render(<ImportApp />)
} else {
	console.error('Could not find import container.')
}