import { ReactNode } from 'react'; import { Box, Text } from '@grafana/ui'; interface MigrationInfoProps { title: NonNullable; children: NonNullable; } export function MigrationInfo({ title, children }: MigrationInfoProps) { return ( {title} {children} ); }