0.0.4 • Published 5 years ago

react-prompts v0.0.4

Weekly downloads
19
License
MIT
Repository
github
Last release
5 years ago
import { Provider, open } from 'react-prompts'

// ...

<Provider>{ ({ prompts }) => map(prompts, (prompt) => ({
  <div>
    { prompt.content }
    <button onClick={ () => { prompt.resolve() } }>okay</button>
    <button onClick={ () => { prompt.reject() } }>nope</button>
  </div>
})) }<Provider>

// ...

open({ content: 'sure?' })
  .then(() => { console.log('great!') })
  .catch(() => { console.log('ohhh') })
0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

6 years ago

0.0.1

6 years ago