mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
14 lines
409 B
JavaScript
14 lines
409 B
JavaScript
import { useContext } from "react"
|
|
import ContextRepositoryViewer from "../contexts/ContextRepositoryViewer"
|
|
|
|
|
|
/**
|
|
* Hook to quickly use {@link ContextRepositoryViewer}.
|
|
*/
|
|
export default function useRepositoryViewer() {
|
|
const context = useContext(ContextRepositoryViewer)
|
|
if(!context) {
|
|
throw new Error("This component must be placed inside a RepositoryViewer.")
|
|
}
|
|
return context
|
|
}
|