0.0.4 • Published 6 years ago

react-action-decorators v0.0.4

Weekly downloads
37
License
MIT
Repository
-
Last release
6 years ago

React Action Decorators

Remove menial event handling

Example

import React from 'react';
import { withTemplateHelpers } from 'react-action-decorators';

@withTemplateHelpers
export default class MyComponent extends Component {
    render() {
        const { mut } = this;
        const { text } = this.state;

        return (
            <div>
              <input value={text} onChange={mut('text')} />
            </div>
        );
    }
}

Demo: https://codesandbox.io/s/2067py0prn

Available Helpers

  • mut
  • toggle
  • pipe