import { Button } from '@storybook/react/demo'; import React from 'react'; import { Modal, ModalBody, ModalHeader, showModal } from './index'; export default { component: Modal, title: 'Modal' }; const ModalWithoutFooterComponent = () => { return ( <> Modal
Simple modal without footer
); }; export const ModalWithoutFooter = () => { return (
); };