mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
|
|
import React from 'react';
|
||
|
|
import Stack from './Stack';
|
||
|
|
|
||
|
|
interface EditorFieldGroupProps {}
|
||
|
|
|
||
|
|
const EditorFieldGroup: React.FC<EditorFieldGroupProps> = ({ children }) => {
|
||
|
|
return <Stack gap={1}>{children}</Stack>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default EditorFieldGroup;
|