@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
11 lines (10 loc) • 492 B
TypeScript
import * as React from 'react';
export interface TermsAndConditionProps {
checked: boolean;
termURL: string;
conditionOfBusinessURL: string;
error?: boolean;
handleTermsAndCondition: (event: React.ChangeEvent<HTMLInputElement>) => void;
}
declare const TermsAndConditionContainer: ({ checked, termURL, conditionOfBusinessURL, error, handleTermsAndCondition, }: TermsAndConditionProps) => import("react/jsx-runtime").JSX.Element;
export default TermsAndConditionContainer;