1386a559b7
Co-authored-by: Eric Bailey <git@esb.lol>
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import {createContext} from 'react'
|
|
|
|
import {type ContextType} from './types'
|
|
|
|
export const Context = createContext<ContextType | null>(null)
|
|
Context.displayName = 'TranslationContext'
|