@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
17 lines • 670 B
TypeScript
/// <reference types="react" />
import { TransactionSender, TransactionSenderType } from 'components/TransactionSender';
import { TransactionsTracker, TransactionsTrackerType } from 'components/TransactionsTracker';
export interface CustomComponentsType {
transactionSender?: {
component: typeof TransactionSender;
props?: TransactionSenderType;
};
transactionTracker?: {
component: typeof TransactionsTracker;
props?: TransactionsTrackerType;
};
}
export declare function CustomComponents({ customComponents }: {
customComponents?: CustomComponentsType;
}): JSX.Element;
//# sourceMappingURL=CustomComponents.d.ts.map