UNPKG

@apideck/file-picker

Version:

A React file picker component that works with the Apideck [File Storage API](https://developers.apideck.com/apis/file-storage/reference).

9 lines (8 loc) 264 B
/// <reference types="react" /> import { File } from '../types/File'; interface Props { folders: File[]; handleClick: (file?: File) => void; } declare const Breadcrumbs: ({ folders, handleClick }: Props) => JSX.Element; export default Breadcrumbs;