Files
modeling-app/src/hooks/useGlobalStateContext.ts

7 lines
191 B
TypeScript
Raw Normal View History

import { GlobalStateContext } from 'components/GlobalStateProvider'
import { useContext } from 'react'
export const useGlobalStateContext = () => {
return useContext(GlobalStateContext)
}