import { Box, Dialog, Grid } from '@material-ui/core' import { ReactElement } from 'react' interface Props { children: ReactElement | ReactElement[] } export function SwarmDialog({ children }: Props): ReactElement { return ( {children} ) }