ant-design/components/locale/context.ts

10 lines
249 B
TypeScript
Raw Normal View History

import { createContext } from 'react';
import type { Locale } from '.';
export type LocaleContextProps = Locale & { exist?: boolean };
const LocaleContext = createContext<LocaleContextProps | undefined>(undefined);
export default LocaleContext;