mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
2f3ef69b30
* WIP button styles refactoring * Starting to work * Tweak form disabled color * Emotion performance tests * More benchmarks * added classnames prop * Button class names refactor test * revert to old style generation * Wrapping up * Updates * Updated tests
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
import { EmotionPerfTest, VerticalGroup } from '@grafana/ui';
|
|
import React, { FC } from 'react';
|
|
|
|
export const BenchmarksPage: FC = () => {
|
|
return (
|
|
<VerticalGroup>
|
|
<EmotionPerfTest />
|
|
</VerticalGroup>
|
|
);
|
|
};
|
|
|
|
export default BenchmarksPage;
|