UNPKG

react-pdf

Version:

Display PDFs in your React app as easily as if they were images.

10 lines (6 loc) 235 B
import { useContext } from 'react'; import PageContext from '../../PageContext.js'; import type { PageContextType } from '../types.js'; export default function usePageContext(): PageContextType { return useContext(PageContext); }