• This project
    • Loading...
  • Sign in

최원석 / 2021-1-database-project

%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
  • 2021-1-database-project
  • app
  • src
  • store
  • state.ts
  • 1seok2's avatar
    refactor: change for fetch data type · 58d68977
    58d68977
    1seok2 authored 2021-06-05 01:18:36 +0900
state.ts 391 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/**
 * @author wonseog
 * @date 2021-03-09
 * @description store 관리
 *              주로 instaId, followers, following 관리
 **/

const initialState = {
  user: ["", "", ""],
  follower: [["", "", ""]],
};

let state = initialState;

export const setState = (newState): void => {
  state = {
    ...state,
    ...newState,
  };
};

export const getState = () => {
  return state;
};