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

7 lines
173 B
TypeScript
Raw Normal View History

import { CommandsContext } from 'components/CommandBar'
import { useContext } from 'react'
export const useCommandsContext = () => {
return useContext(CommandsContext)
}