cl01/wp-content/plugins/code-snippets/js/edit.tsx
2025-02-24 12:39:24 +08:00

13 lines
358 B
TypeScript
Executable File

import React from 'react'
import { createRoot } from 'react-dom/client'
import { SnippetForm } from './components/SnippetForm'
const container = document.getElementById('edit-snippet-form-container')
if (container) {
const root = createRoot(container)
root.render(<SnippetForm />)
} else {
console.error('Could not find snippet edit form container.')
}