Last active
July 19, 2023 09:39
-
-
Save nielslange/e7a0fdedc91e826cc2f0c3243a88b889 to your computer and use it in GitHub Desktop.
ExperimentalOrderLocalPickupPackages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* External dependencies | |
*/ | |
import { registerPlugin } from '@wordpress/plugins'; | |
import { ExperimentalOrderLocalPickupPackages } from '@woocommerce/blocks-checkout'; | |
const render = () => { | |
return ( | |
<ExperimentalOrderLocalPickupPackages> | |
<div> | |
ExperimentalOrderLocalPickupPackages | |
</div> | |
</ExperimentalOrderLocalPickupPackages> | |
); | |
}; | |
registerPlugin( 'slot-and-fill-examples', { | |
render, | |
scope: 'woocommerce-checkout', | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment