mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1fcf94c3b9
React shared context GitOrigin-RevId: ebc6fa90dd8c65ddf803fd457c99a30f0e8e3c9c
27 lines
522 B
JavaScript
27 lines
522 B
JavaScript
import React, { createContext, useContext } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
export const EditorContext = createContext()
|
|
|
|
export function EditorProvider({ children }) {
|
|
return (
|
|
<EditorContext.Provider
|
|
value={{
|
|
projectId: window.project_id
|
|
}}
|
|
>
|
|
{children}
|
|
</EditorContext.Provider>
|
|
)
|
|
}
|
|
|
|
EditorProvider.propTypes = {
|
|
children: PropTypes.any
|
|
}
|
|
|
|
export function useEditorContext() {
|
|
const { projectId } = useContext(EditorContext)
|
|
return {
|
|
projectId
|
|
}
|
|
}
|