// @flow import React from 'react'; import { render } from 'react-dom'; import AdminBar from './components/AdminBar/AdminBar'; function initAdminBar() { const root = document.getElementById('wp-admin-bar-ab-testing-for-wp'); if (!root) return; render(, root); } document.addEventListener('DOMContentLoaded', initAdminBar);