import React, { FC, HTMLAttributes } from 'react';
import Grid from '@material-ui/core/Grid';
import { SelectByImage } from '../../../atoms/SelectByImage';
export interface Props extends HTMLAttributes {
options: any[];
onChange: (selected: any) => void;
value: any;
}
export const RemoveDialogContent: FC = ({
options,
onChange,
value,
}) => {
return (
);
};