react-async-fn
v0.1.0
Published
A hoc to help you handle async functions within react.
Downloads
2
Readme
react-async-fn
A simple hoc to resolve async functions on React.
Usage
Install it
npm i react-async-fn
Use it
import React from 'react
import asyncFn = require('react-async-fn')
const Component = ({load, loading, data, error}) => (
<div className={loading ? 'loading'}>
{data}
<Button onClick={load} />
</div>
)
const enhancer = asyncFn(async () => ...) // load your data
export default enhancer(Component)
Missing a feature? PRs are always welcome :)