• This project
    • Loading...
  • Sign in

정승호 / Hexa_for_you_renewal

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 1
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Hexa_for_you_renewal
  • client
  • src
  • _reducers
  • user_reducer.js
  • 정승호's avatar
    로그인 페이지 제작 · 4df598a0
    4df598a0
    정승호 authored 2020-06-22 21:54:32 +0900
user_reducer.js 284 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import {
    LOGIN_USER
} from '../_actions/types';

export default function (state={}, action){
    switch (action.type) {
        case LOGIN_USER:
            return { ...state, loginSuccess: action.payload}
            break;
    
        default:
            return state;
    }
}