Files
grafana/public/test/helpers/TestProvider.tsx
T
Josh Hunt 5361efc225 I18n: Migrate to I18next (#55845)
* Switch from lingui from i18next

* Change lingui messages to i18next messages

* Change lingui messages to i18next messages (grafana-ui)

* Init i18n for tests
2022-10-06 16:34:04 +01:00

8 lines
138 B
TypeScript

import React from 'react';
const TestProvider: React.FC = ({ children }) => {
return <>{children}</>;
};
export default TestProvider;