Automattic\WooCommerce\Internal\Admin

Loader::page_wrapperpublic staticWC 1.0

Set up a div for the app to render into.

Method of the class: Loader{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = Loader::page_wrapper();

Loader::page_wrapper() code WC 11.0.1

<?php
public static function page_wrapper() {
	?>
	<div class="wrap">
		<div id="root"></div>
	</div>
	<?php
}