• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / HCS_Project1

%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 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • HCS_Project1
  • code
  • render_server_react_native
  • sagas
  • index.js
  • 김성연's avatar
    tjddus: add MapView, Marker, StartFinshLocation frontend, update backend login · 1b26089c
    1b26089c Browse Files
    김성연 authored 2020-05-26 02:28:28 +0900
index.js 216 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
import {all, fork} from 'redux-saga/effects';

import user from './user';
import location from './location';

export default function* rootSaga() {
    yield all([
        fork(user),
        fork(location),
    ])
}