Shop

The APIs for obtaining information about the current shop.

shop: Shop

CAUTION

This API can only be used on the checkout page.

shopShop

The current shop information.

render("Checkout::Dynamic::Render", (props) => {
const { shop } = props;
const top = (
<>
<Banner title={`This shop is ${shop.name}`} />;
</>
);
return top;
});
Was this article helpful to you?