Skip to content

Commit

Permalink
rem
Browse files Browse the repository at this point in the history
  • Loading branch information
mPaella committed Oct 25, 2024
1 parent d5b3661 commit 4bcf7d5
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { useCrossmint } from "@/hooks";
import { createCrossmintApiClient } from "@/utils/createCrossmintApiClient";
import { crossmintHostedCheckoutV3Service, type CrossmintHostedCheckoutV3Props } from "@crossmint/client-sdk-base";
import { type MouseEvent, useState, type JSX } from "react";
import type { MouseEvent, JSX } from "react";

export type CrossmintHostedCheckoutV3ReactProps = CrossmintHostedCheckoutV3Props & JSX.IntrinsicElements["button"];

export function CrossmintHostedCheckout_Alpha(props: CrossmintHostedCheckoutV3ReactProps) {
const [showOverlay, setShowOverlay] = useState(false);

const { crossmint } = useCrossmint();
const apiClient = createCrossmintApiClient(crossmint);

Expand Down

0 comments on commit 4bcf7d5

Please sign in to comment.