UNPKG

@chayns-components/gallery

Version:

A set of beautiful React components for developing your own applications with chayns.

10 lines (9 loc) 230 B
import { FC } from 'react'; export type AddFileProps = { /** * Function to be executed when files are added */ onAdd: (files: File[]) => void; }; declare const AddFile: FC<AddFileProps>; export default AddFile;