import { Box, Typography } from '@material-ui/core' import { ReactElement } from 'react' import { EnrichedPostageBatch } from '../../providers/Stamps' import { PostageStamp } from '../stamps/PostageStamp' interface Props { stamp: EnrichedPostageBatch } export function StampPreview({ stamp }: Props): ReactElement { return ( Associated postage stamp: ) }