Automattic\WooCommerce\Internal\Admin

Loader::page_wrapper()public staticWC 1.0

Set up a div for the app to render into.

Method of the class: Loader{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = Loader::page_wrapper();

Loader::page_wrapper() code WC 8.7.0

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