DappFactory
  • Introduction
  • How To Guides
    • ERC-20 Token
    • Tokensale
    • Vesting
    • Liquidity Lockers
    • Staking Pools
    • Farms
  • Custom Development
  • SDK
    • Getting started
    • ERC20 Token
      • Create ERC20 Token
    • NFT
      • Create NFT
    • IVCO / IDO / Presale
      • Create IVCO / IDO
    • Farms
      • Create Farm Button
      • Fetch Farms Data
      • Create Farm Function
    • Staking Pool
      • Create Staking Pool Button
    • Vesting Schedule
      • Create Vesting Schedule
    • Liquidity Locker
      • Create Liquidity Locker
    • Components
    • Customization
    • Demo
  • MISC
    • Dapp Factory and CNT
      • Figma Integration
    • FAQs
      • GitHub Integration
    • Referral Systems and how they work
      • Intercom Integration
  • Extras
    • Keyboard Shortcuts
Powered by GitBook
On this page
  1. SDK
  2. NFT

Create NFT

PreviousNFTNextIVCO / IDO / Presale

Last updated 3 years ago

src/views/NFT.tsx
import React from "react";
import { CreateNFT, CreateNFTButton } from "@cryption/dapp-factory-sdk";

const NFT = () => {
  return (
    <>
      <CreateNFTButton />
      <CreateNFT />
    </>
  );
};
export default NFT;