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) 202 B
/// <reference types="react" /> interface Props { src: string; onLoad: (value: boolean) => void; } export default function DocumentViewer({ src, onLoad }: Props): JSX.Element; export {};