grafana/public/test/helpers/TestProvider.tsx

8 lines
157 B
TypeScript
Raw Normal View History

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