redux-authentication

2.0.0 • Public • Published

redux-authentication

NPM version build status David deps node version Gittip

authentication component for redux

Install

NPM

Examples

import authentication from 'redux-authentication'
import {connect} from 'react-redux'
import React, { PropTypes } from 'react'
import {goToLogin} from 'your-actions'
 
@connect(state => ({
  isAuthenticated: state.isAuthenticated
}), {
  goToLogin,//map to props.goToLogin OR props.actions.goToLogin
})
@authentication
class App extends React.Component {
  // will be called until isAuthenticated is updated to true
  render() {
    return (
      <div>
        App
      </div>
    )
  }
}
 
export default App

Package Sidebar

Install

npm i redux-authentication

Weekly Downloads

12

Version

2.0.0

License

MIT

Last publish

Collaborators

  • jackong