import React from 'react';
import List from '@material-ui/core/List';
import ListItem from '@material-ui/core/ListItem';
import ListItemIcon from '@material-ui/core/ListItemIcon';
import ListItemText from '@material-ui/core/ListItemText';
import ExploreIcon from '@material-ui/icons/Explore';
import { ExploreDialogContent } from './ExploreDialogContent';
export const buildExploreInterface = (wallet: any, handleSubmit: any) => {
return {
disabledWhen: () => {
return wallet.status === 'LOCKED' || wallet.contents.length === 0;
},
dialogTrigger: (
),
dialogTitle: 'Explore',
dialogSubmitTitle: 'Explore',
dialogContent: ,
handleSubmit,
handleCancel: async () => {},
};
};