Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import { ChangePassword } from 'presets/B2B/UserProfile'
const handleResetPassword = changeArgs => {
console.log('[Handler] handleResetPassword', changeArgs.toSerialized())
}
storiesOf('presets/B2B/UserProfile', module).add('ChangePassword', () => (
<ChangePassword onResetPassword={handleResetPassword} />
))