import React, { FC, HTMLAttributes } from 'react'; import Grid from '@material-ui/core/Grid'; import { WalletContentTable } from '../../tables/ContentTable/WalletContentTable'; export interface Props extends HTMLAttributes { contents: any[]; } export const ExploreDialogContent: FC = ({ contents }: any) => { return (
); };