grafana/public/app/features/sandbox/BenchmarksPage.tsx
Torkel Ödegaard 2f3ef69b30
Buttons: Refactor & use new theme (#32767)
* 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
2021-04-08 13:00:58 +02:00

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;