• This project
    • Loading...
  • Sign in

김건희 / OSSW_Weather_Briefing

%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
  • OSSW_Weather_Briefing
  • weather_briefing
  • src
  • modules
  • Index.js
  • 김건희's avatar
    [Add] Weather Files · 4249ba15
    4249ba15
    김건희 authored 2022-06-05 19:35:22 +0900
Index.js 237 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
import { combineReducers } from "redux";
import user from "./user.js";
import weather from "./weather";
import clothes from "./clothes";

const rootReducer = combineReducers({
  user,
  weather,
  clothes,
})

export default rootReducer;