import { ChangeEvent, createRef } from 'react'; import { Button } from '@@/buttons'; import styles from './FileUploadField.module.css'; export interface Props { onChange(value: File): void; value?: File; accept?: string; title?: string; required?: boolean; inputId: string; } export function FileUploadField({ onChange, value, accept, title = 'Select a file', required = false, inputId, }: Props) { const fileRef = createRef(); return (
{value ? ( value.name ) : (