import EmptyStateWarning from 'sentry/components/emptyStateWarning'; import {Panel, PanelBody} from 'sentry/components/panels'; type Props = { children: React.ReactNode; }; const EmptyState = ({children}: Props) => (

{children}

); export default EmptyState;