### Embed your NFT stores on your website
npm install mintbase-bridgeStill in beta, will be ready soon.
Mintbase.io

With npm:
```
npm install mintbase-bridge --save
With yarn
``
yarn add -S mintbase-bridge
Please refer to the official Mintbase docs for
a more holistic understanding of the various Link options.
`jsx
import React, { useState } from "react";
import Mintbase from "mintbase-bridge";
const EmbedMintbase = () => {
const [isOpen, setIsOpen] = useState(false);
return (
$3
You can find your contract hash when you deploy your store or you can embed other folks markets as well.
`
export enum Network {
rinkeby = "rinkeby",
mainnet = "homestead",
}
interface MintbaseProps {
contract: string;
show: boolean;
network?: Network;
handleClose: (isOpen: boolean) => void;
dark?: string;
darker?: string;
darkAlpha?: string;
}
``