File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/edit.tsx.tar
var/www/vhosts/uyarreklam.com.tr/httpdocs/wp-content/plugins/code-snippets/js/edit.tsx 0000644 00000000546 15153702712 0025360 0 ustar 00 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.')
}