mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 03:13:49 +08:00

* rename internationalization docs * Move localisation.tsx to internationalization/index.tsx
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import React from 'react';
|
|
|
|
import { I18nProvider } from '../../app/core/internationalization';
|
|
|
|
const TestProvider: React.FC = ({ children }) => {
|
|
return <I18nProvider>{children}</I18nProvider>;
|
|
};
|
|
|
|
export default TestProvider;
|