mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 20:22:19 +08:00

* FrameGraphTopTable: Use standard Table component * Simplify * Fix test * Update tests * Fixing test * FlameGraph: Refactor and simplify styles * updated
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
import React from 'react';
|
|
|
|
import { CoreApp, PanelProps } from '@grafana/data';
|
|
|
|
import FlameGraphContainer from './components/FlameGraphContainer';
|
|
|
|
export const FlameGraphPanel = (props: PanelProps) => {
|
|
return <FlameGraphContainer data={props.data.series[0]} app={CoreApp.Unknown} />;
|
|
};
|