woocommerce/plugins/woocommerce-admin/client/wp-admin-scripts/product-tour/index.tsx

17 lines
498 B
TypeScript
Raw Normal View History

/**
* 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 /> );