Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mcnallydev/react-md-dialog

React Component Material Design Dialog.
https://github.com/mcnallydev/react-md-dialog

javascript jsx react

Last synced: about 2 months ago
JSON representation

React Component Material Design Dialog.

Awesome Lists containing this project

README

        

# react-md-dialog

React Component Material Design Dialog.

## Installation

$ yarn add react-md-dialog

## Example
```javascript
import Dialog from 'react-md-dialog';


Hello world

```

## Props

Name | Description | Default/Required | Type
------|-------------|----------|-----------
show | Show or hide dialog. | required | bool
progressBar | Show ProgressBar with overlay. | optional | bool
errors | Shor error messages. | optional | array

## Errors

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