UNPKG

@io-orkes/human-task-material-renderers-react

Version:

`@io-orkes/human-task-material-renderers-react` is a custom library that extends the `@jsonforms/material-renderers` to provide custom renderers for human task forms. This library leverages Material UI components to deliver a seamless and responsive user

11 lines (9 loc) 265 B
import { default as React } from 'react'; export interface UploadButtonProps { id?: string; value?: string; onChange: (newValue?: string) => void; accept?: string; } declare const FileUpload: React.FC<UploadButtonProps>; export default FileUpload;