UNPKG

@woocommerce/data

Version:
19 lines (18 loc) 458 B
/** * External dependencies */ import { dispatch } from '@wordpress/data'; import { addHistoryListener } from '@woocommerce/navigation'; /** * Internal dependencies */ import { STORE_NAME } from './constants'; export default async () => { const { onLoad, onHistoryChange } = dispatch(STORE_NAME); await onLoad(); addHistoryListener(async () => { setTimeout(async () => { await onHistoryChange(); }, 0); }); };