grafana/public/app/features/sandbox/BenchmarksPage.tsx
Jack Westbrook d7228829ad
Grafana UI: Clean up bundle (#56100)
* chore(grafana-ui): don't bundle emotionPerfTest

* chore(grafana-ui): fix circular dependencies that cause esm chunks to not match up

* chore(grafana-ui): prevent bundling all css properties in package types
2022-10-04 17:51:45 +02:00

15 lines
331 B
TypeScript

import React, { FC } from 'react';
import { VerticalGroup } from '@grafana/ui';
import { EmotionPerfTest } from '@grafana/ui/src/components/ThemeDemos/EmotionPerfTest';
export const BenchmarksPage: FC = () => {
return (
<VerticalGroup>
<EmotionPerfTest />
</VerticalGroup>
);
};
export default BenchmarksPage;