File "index.js"
Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/everest-forms/src/dashboard/index.js
File size: 298 bytes
MIME-type: text/x-java
Charset: utf-8
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
(function () {
const container = document.getElementById("everest-forms-dashboard");
if (!container) return;
const root = ReactDOM.createRoot(container);
if (root) {
root.render(<App />);
}
})();