2020-10-13 01:40:53 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2020-10-21 17:02:45 +00:00
|
|
|
import { withNavigationHydration } from '@woocommerce/data';
|
2020-10-13 01:40:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2020-11-03 00:57:49 +00:00
|
|
|
import './style.scss';
|
2020-10-13 01:40:53 +00:00
|
|
|
import Container from './components/container';
|
|
|
|
|
2020-10-21 17:02:45 +00:00
|
|
|
const HydratedNavigation = withNavigationHydration( window.wcNavigation )(
|
2021-04-23 03:44:54 +00:00
|
|
|
Container
|
2020-10-21 17:02:45 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
export default HydratedNavigation;
|