Skip to main content
Version: 2.3.0

ShopView

The shop view is used to display ecommerce SKUs, note that only SKUs that match the user's account currency will be displayed, if the user haven't purchased any products yet, they'll see all SKUs in all currencies.

Loading...

Usage#

import React from "react";
import { ShopView, PelcroModalController } from "@pelcro/react-pelcro-js";
import "@pelcro/react-pelcro-js/dist/pelcro.css";
export const ShopViewExample = () => {
return (
<PelcroModalController>
<ShopView />
</PelcroModalController>
);
};