mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
* 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
15 lines
331 B
TypeScript
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;
|