Files
bsky-social-app/src/lib/translation/context.ts
T
2026-03-17 12:31:23 -05:00

7 lines
185 B
TypeScript

import {createContext} from 'react'
import {type ContextType} from './types'
export const Context = createContext<ContextType | null>(null)
Context.displayName = 'TranslationContext'