import {action} from '@storybook/addon-actions'; import Button from 'sentry/components/button'; import EmptyStateWarning from 'sentry/components/emptyStateWarning'; import {IconClose} from 'sentry/icons'; export default { title: 'Views/Empty States/Empty State Warning', component: EmptyStateWarning, }; export const Default = () => (

There are no events found!

); export const WithInnerButton = () => (

There are no events found!

); Default.storyName = 'Empty State Warning';