storiesOf('Inputs/PasswordInput', module)
  .addDecorator(storyFunc => <BaseComponent>{storyFunc()}</BaseComponent>)
  .addDecorator(withKnobs)
  .add('basic', () => setupPasswordInput(), getNotes(Notes.basicTextInput))
  .add('with no placeholder', () => setupPasswordInput({ placeholder: null}), getNotes(Notes.basicWithNoPlaceholder));