2018-04-17 23:51:48 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2019-07-08 04:10:34 +00:00
|
|
|
import '@wordpress/notices';
|
2018-05-18 17:31:08 +00:00
|
|
|
import { render } from '@wordpress/element';
|
2018-04-17 23:51:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2018-08-06 15:30:43 +00:00
|
|
|
import './stylesheets/_index.scss';
|
2018-06-26 14:49:42 +00:00
|
|
|
import { PageLayout } from './layout';
|
2018-11-29 15:57:49 +00:00
|
|
|
import 'wc-api/wp-data-store';
|
2018-05-15 15:06:15 +00:00
|
|
|
|
2019-07-05 08:15:49 +00:00
|
|
|
render( <PageLayout />, document.getElementById( 'root' ) );
|