HOME


Mini Shell 1.0
DIR: /home/otwalrll/feedafricafarm.com/wp-content/plugins/everest-forms/src/rolesandpermission/
Upload File :
Current File : /home/otwalrll/feedafricafarm.com/wp-content/plugins/everest-forms/src/rolesandpermission/index.js
import React from "react";
import ReactDOM from "react-dom/client";
import App from './App';

(function () {
	const container = document.getElementById("evf-roles-and-permission");

	if (!container) return;

	const root = ReactDOM.createRoot(container);
	if (root) {
		root.render(<App />);
	}
})();