Drapegnik/hello-react-redux

View on GitHub
src/actions/clearProfile.js

Summary

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

import { CLEAR_PROFILE } from './constants';

export default function clearProfile() {
  return {
    type: CLEAR_PROFILE,
  };
}