UNPKG

@afzalimdad9/react-file-preview

Version:

The url previewer is built using native html elements for previewing url of files of the following type

8 lines (7 loc) 211 B
/// <reference types="react" /> interface Props { onLoad: (value: boolean) => void; mimeType: string; } export default function DefaultViewer({ onLoad, mimeType }: Props): JSX.Element; export {};