Last active
July 19, 2023 09:39
-
-
Save nielslange/35f7a76a5f545346fee3f384e55016de to your computer and use it in GitHub Desktop.
ExperimentalOrderShippingPackages
This file contains 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 { ExperimentalOrderShippingPackages } from '@woocommerce/blocks-checkout'; | |
const render = () => { | |
return ( | |
<ExperimentalOrderShippingPackages> | |
<div> | |
ExperimentalOrderShippingPackages | |
</div> | |
</ExperimentalOrderShippingPackages> | |
); | |
}; | |
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