Skip to content

Instantly share code, notes, and snippets.

@nabato
nabato / codeExamples.js
Created August 31, 2018 18:21
JS code examples
// ------------------------------------
// 1
// ------------------------------------
function* likeComment(action) {
const { comment_id, unlike } = action.payload
const user = yield select(selectUser)
const token = get(user, 'data.auth_token')
yield put(receiveLikedComment(comment_id, unlike))