mirror of https://github.com/grafana/grafana.git
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
|
import React from 'react';
|
||
|
import { I18nProvider } from '../../app/core/localisation';
|
||
|
|
||
|
const TestProvider: React.FC = ({ children }) => {
|
||
|
return <I18nProvider>{children}</I18nProvider>;
|
||
|
};
|
||
|
|
||
|
export default TestProvider;
|