mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 16:32:28 +08:00
16 lines
275 B
TypeScript
16 lines
275 B
TypeScript
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>
|
|
);
|
|
};
|