import React from "react"; import Dropzone from "../../"; import { FileWithPath } from "file-selector"; export default class Basic extends React.Component { state = { files: [] }; onDrop = (files: FileWithPath[]) => { this.setState({ files, }); }; render() { return ( {({ getRootProps, getInputProps }) => ( Try dropping some files here, or click to select files to upload. )} ); } } export const optional = ( {({ getRootProps, getInputProps }) => ( )} );
Try dropping some files here, or click to select files to upload.