@open-tender/ui
Version:
A component library for use with the Open Tender web app
15 lines (14 loc) • 638 B
TypeScript
import { CustomerIdentifyCustomer } from '@open-tender/types';
import React from 'react';
import { Handlers, ScreenConfig } from '../../types';
declare const Account: ({ config, handlers, customer, isLoading, renderHeader, renderLoader, renderRewardsSection, renderRecentOrdersSection }: {
config: ScreenConfig;
handlers: Handlers;
isLoading: boolean;
customer: CustomerIdentifyCustomer;
renderHeader: () => React.ReactNode;
renderLoader: () => React.ReactNode;
renderRewardsSection: () => React.ReactNode;
renderRecentOrdersSection: () => React.ReactNode;
}) => React.JSX.Element;
export default Account;