import {
render,
useShippingAddress,
Banner,
} from '@shopify/checkout-ui-extensions-react';
render(
'Checkout::DeliveryAddress::RenderBefore',
() => ,
);
function Extension() {
const {countryCode} = useShippingAddress();
if (countryCode !== 'CA') {
return (
Sorry, we can only ship to Canada at this
time
);
}
}