Drapegnik/hello-react-redux

View on GitHub
src/actions/login.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Created by Drapegnik on 03.02.17.
 */

import { LOGIN } from './constants';

export default function login(id) {
  return {
    type: LOGIN,
    id,
  };
}