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 SyncIcon from '@material-ui/icons/Sync';
import { SyncContentDialogContent } from './SyncContentDialogContent';
export const buildSyncContentInterface = (
wallet: any,
dialogState: any,
setDialogState: any,
handleSubmit: any
) => {
return {
disabledWhen: () => {
return wallet.status === 'LOCKED' || wallet.contents.length === 0;
},
dialogTrigger: (
),
dialogTitle: 'Sync',
dialogSubmitTitle: 'Sync',
dialogContent: (
),
handleSubmit,
handleCancel: async () => {},
};
};