export const profileFetchSuccessful = curry((dispatch: any => void, profile: Object) => dispatch({
    type: types.FETCH_PROFILE_SUCCESS,
    data: profile
}));