UNPKG

@roo-ui/components

Version:

10 lines 375 B
import React from 'react'; import { storiesOf } from '@storybook/react'; import { withDocs } from 'storybook-readme'; import PasswordInput from '.'; import README from './README.md'; storiesOf('Components|PasswordInput', module).addDecorator(withDocs(README)).add('default', function () { return React.createElement(PasswordInput, { placeholder: "Hello world" }); });