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! } onClick={action('click')} > Clear filters ); Default.storyName = 'Empty State Warning';
There are no events found!