Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import { styled } from 'styleh-components'
import { ResetPasswordConfirmationForm } from 'presets/B2B'
const handleResetPasswordClick = changeArgs => {
console.log('[Handler] handleResetPasswordClick ', changeArgs.toSerialized())
}
storiesOf('presets/B2B/ResetPasswordConfirmationForm', module).add(
'default',
() => <ResetPasswordConfirmationForm onResetPasswordClick={handleResetPasswordClick}/>
)