[ABANDONED] React/Redux front end for the Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
449 B

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<Props> = ({ name, label = 'Image', help = 'Approx 128 x 128. Max 5 MBs.' }) => {
return <FileField name={name} label={label} help={help} previewWidth={64} maxSize={MEDIA_DEFAULT_MAX_SIZE} />
}
export default ImageField