2021-01-13 19:43:45 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2024-07-29 13:30:03 +00:00
|
|
|
import { createRoot } from '@wordpress/element';
|
2021-01-13 19:43:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { BetaFeaturesTrackingContainer } from './container';
|
|
|
|
import './style.scss';
|
|
|
|
|
|
|
|
const betaFeaturesRoot = document.createElement( 'div' );
|
|
|
|
|
2024-07-29 13:30:03 +00:00
|
|
|
betaFeaturesRoot.setAttribute( 'id', 'beta-features-tracking' );
|
|
|
|
createRoot( document.body.appendChild( betaFeaturesRoot ) ).render(
|
|
|
|
<BetaFeaturesTrackingContainer />
|
2021-01-13 19:43:45 +00:00
|
|
|
);
|