npm.io
0.0.4 • Published 8 years ago

react-wait-for-it

Licence
MIT
Version
0.0.4
Deps
4
Size
7 kB
Vulns
0
Weekly
0

WaitForIt

A promise-ful component that waits to load something

Get it

yarn add react-wait-for-it
# or
npm install --save react-wait-for-it

Use it

import WaitForIt from 'react-wait-for-it';

const MyApp = (props) => (
  <WaitForIt
    promise={fetch('https://jsonplaceholder.typicode.com/users').then(r => r.json())}
    render={data => <Users users={data} />}
  />
)

Play with it

yarn start

localhost:8080

Test it

yarn test