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).

8 lines (7 loc) 201 B
import { ReactNode } from 'react'; interface Props { open: boolean; children: ReactNode; } declare const SlideOver: ({ open, children }: Props) => JSX.Element; export default SlideOver;