import React, { FC } from 'react' import { MEDIA_DEFAULT_MAX_SIZE } from '../../constants' import FileField from './file-field' interface Props { name: string label?: string help?: string } const ImageField: FC = ({ name, label = 'Image', help = 'Approx 128 x 128. Max 5 MBs.' }) => { return ( ) } export default ImageField