7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
![]() |
import { FileContext } from 'components/FileMachineProvider'
|
||
|
import { useContext } from 'react'
|
||
|
|
||
|
export const useFileContext = () => {
|
||
|
return useContext(FileContext)
|
||
|
}
|