UNPKG

@afzalimdad9/react-file-preview

Version:

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

9 lines (8 loc) 239 B
/// <reference types="react" /> interface Props { src: string; onLoad: (value: boolean) => void; onError: (e: any) => void; } export default function HTMLViewer({ src, onLoad, onError }: Props): JSX.Element; export {};