17 lines
498 B
TypeScript
17 lines
498 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
// @ts-expect-error -- @wordpress/element doesn't export createRoot until WP6.2
|
|
// eslint-disable-next-line @woocommerce/dependency-group
|
|
import { createRoot } from '@wordpress/element';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { ProductTour } from '../../guided-tours/add-product-tour/index';
|
|
|
|
const root = document.createElement( 'div' );
|
|
root.setAttribute( 'id', 'product-tour-root' );
|
|
|
|
createRoot( document.body.appendChild( root ) ).render( <ProductTour /> );
|