All files / app/src/features/passport/ui/custom-properties-form custom-properties-form.stories.tsx

72.72% Statements 8/11
100% Branches 0/0
0% Functions 0/1
72.72% Lines 8/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 181x       1x 1x 1x 1x   1x           1x 1x  
import { Story, Meta } from '@storybook/react'
import { CustomPropertiesForm } from './custom-properties-form'
import { Form } from '@/shared/lib'
 
export default {
  title: 'Features/Passport/CustomPropertiesForm',
  component: CustomPropertiesForm,
} as Meta
 
const Template: Story = args => (
  <Form>
    <CustomPropertiesForm {...args} />
  </Form>
)
 
export const Default = Template.bind({})
Default.args = {}