import { h } from 'preact';
import { action } from '@storybook/addon-actions';
import { SnackbarItem } from '../SnackbarItem';
export default {
title: 'App Components/Snackbar/SnackbarItem',
};
export const JustAMessage = () => (
);
JustAMessage.story = {
name: 'message only',
};
export const WithOneAction = () => (
);
WithOneAction.story = {
name: 'with one action',
};
export const WithActions = () => (
);
WithActions.story = {
name: 'with actions',
};