mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
import { createContext } from "react"
|
|
|
|
|
|
/**
|
|
* React Context representing containing all variables of a {@link RepositoryViewer}.
|
|
*
|
|
* It is `null` outside a RepositoryViewer.
|
|
*/
|
|
export default createContext(null)
|