@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
18 lines (17 loc) • 454 B
TypeScript
import { ReactNode } from 'react';
type RenderIfProps = {
condition: boolean;
children: ReactNode;
};
type ElseProps = {
children: ReactNode;
};
declare const RenderIf: {
({ condition, children }: RenderIfProps): import("react/jsx-runtime").JSX.Element | null;
Else: {
({ children }: ElseProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
displayName: string;
};
export default RenderIf;