import React from 'react'; import { StoryFn, Meta } from '@storybook/react'; import { ModalTrigger } from './ModalTrigger'; export default { title: 'Modal', component: ModalTrigger, } as Meta; const Template: StoryFn = ({ label }) => { return ( <> {(onClose, titleProps) => (
Testing
)}
); }; export const Primary = Template.bind({}); Primary.args = { label: 'Resource Browser Modal', };