mirror of
https://github.com/grafana/grafana.git
synced 2026-08-18 17:15:08 -05:00
* Switch from lingui from i18next * Change lingui messages to i18next messages * Change lingui messages to i18next messages (grafana-ui) * Init i18n for tests
8 lines
138 B
TypeScript
8 lines
138 B
TypeScript
import React from 'react';
|
|
|
|
const TestProvider: React.FC = ({ children }) => {
|
|
return <>{children}</>;
|
|
};
|
|
|
|
export default TestProvider;
|