import { Skeleton } from 'antd'; import { PdfHighlighter, PdfLoader } from 'react-pdf-highlighter'; import FileError from '../file-error'; import { useCatchError } from '../hooks'; interface IProps { url: string; } const PdfPreviewer = ({ url }: IProps) => { const { error } = useCatchError(url); const resetHash = () => {}; return (