emptyState.tsx 385 B

123456789101112131415161718
  1. import EmptyStateWarning from 'sentry/components/emptyStateWarning';
  2. import {Panel, PanelBody} from 'sentry/components/panels';
  3. type Props = {
  4. children: React.ReactNode;
  5. };
  6. const EmptyState = ({children}: Props) => (
  7. <Panel>
  8. <PanelBody>
  9. <EmptyStateWarning>
  10. <p>{children}</p>
  11. </EmptyStateWarning>
  12. </PanelBody>
  13. </Panel>
  14. );
  15. export default EmptyState;