PHP Classes

File: src/googleauth-page/main.jsx

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   WPMU Dev Plugin Test   src/googleauth-page/main.jsx   Download  
File: src/googleauth-page/main.jsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WPMU Dev Plugin Test
Test WordPress plugin created using WPMU Dev
Author: By
Last change:
Date: 2 months ago
Size: 479 bytes
 

Contents

Class file image Download
import { createRoot, render, StrictMode, createInterpolateElement, } from "@wordpress/element"; import "./scss/style.scss"; import WPMUDEV_PluginTest from "./components/Home"; const domElement = document.getElementById( window.wpmudevPluginTest.dom_element_id, ); if (createRoot) { createRoot(domElement).render( <StrictMode> <WPMUDEV_PluginTest /> </StrictMode>, ); } else { render( <StrictMode> <WPMUDEV_PluginTest /> </StrictMode>, domElement, ); }