Pyroscope: Rename phlare to grafana-pyroscope-datasource (#68859)

This commit is contained in:
Ryan McKinley
2023-06-06 20:09:29 -07:00
committed by GitHub
parent cefcbfa5ed
commit e17ef5e504
42 changed files with 48 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
import { Stack } from './Stack';
interface EditorRowsProps {
children: React.ReactNode;
}
export const EditorRows = ({ children }: EditorRowsProps) => {
return (
<Stack gap={0.5} direction="column">
{children}
</Stack>
);
};