Drapegnik/hello-react-redux

View on GitHub
src/actions/starRepo.js

Summary

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

import { STAR_REPO } from './constants';

export default function starRepo(id) {
  return {
    type: STAR_REPO,
    id,
  };
}