ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
11 lines • 422 B
TypeScript
import { ReactNode } from 'react';
import { I18nProvider } from '../types';
/**
* Store the i18nProvider in a context, and rerender children when the locale changes
*/
export declare const I18nContextProvider: ({ value, children, }: I18nContextProviderProps) => JSX.Element;
export interface I18nContextProviderProps {
value: I18nProvider;
children: ReactNode;
}
//# sourceMappingURL=I18nContextProvider.d.ts.map