Skip to content

Instantly share code, notes, and snippets.

@vistajess
Last active October 26, 2015 06:34
Show Gist options
  • Save vistajess/ebe76cca24009fd24b15 to your computer and use it in GitHub Desktop.
Save vistajess/ebe76cca24009fd24b15 to your computer and use it in GitHub Desktop.
Create multiple Action creators
import {
// imports here
} from '../constants/ActionTypes';
import axios from 'axios';
Number 1:
export default {
getComments() {
//codes for fetching comments
}
getCommentsByPostId() {
//codes for fetching comments
}
}
===============================
or like this
Number 2:
export default {
getComments() {
//codes for fetching comments
}
}
export default {
getCommentsByPostId() {
//codes for fetching comments
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment