0.0.3 • Published 7 years ago

react-md-dialog v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

react-md-dialog

React Component Material Design Dialog.

Installation

$ yarn add react-md-dialog

Example

import Dialog from 'react-md-dialog';

<Dialog show={true}>
  <div>
    Hello world
  </div>
</Dialog>

Props

NameDescriptionDefault/RequiredType
showShow or hide dialog.requiredbool
progressBarShow ProgressBar with overlay.optionalbool
errorsShor error messages.optionalarray

Errors

const errors = [
  {
    message: 'Example error 1.'
  },
  {
    message: 'Example error 2.'
  }
]