Drapegnik/hello-react-redux

View on GitHub
src/actions/index.js

Summary

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

import login from './login';
import getProfile from './getProfile';
import clearProfile from './clearProfile';
import starRepo from './starRepo';

const actions = { login, getProfile, clearProfile, starRepo };
export default actions;