2018-04-17 23:51:48 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2018-05-18 17:31:08 +00:00
|
|
|
import { render } from '@wordpress/element';
|
|
|
|
import { Provider as SlotFillProvider } from 'react-slot-fill';
|
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-07-05 03:14:40 +00:00
|
|
|
import 'store';
|
2018-05-15 15:06:15 +00:00
|
|
|
|
|
|
|
render(
|
2018-09-11 19:48:43 +00:00
|
|
|
<SlotFillProvider>
|
|
|
|
<PageLayout />
|
|
|
|
</SlotFillProvider>,
|
2018-04-17 23:51:48 +00:00
|
|
|
document.getElementById( 'root' )
|
|
|
|
);
|