source: jobvista-frontend/src/redux/store.js@ 28b3398

main
Last change on this file since 28b3398 was 28b3398, checked in by 223021 <daniel.ilievski.2@…>, 3 weeks ago

Implemented job application functionality, added job advertisement filtering and replaced text areas with editors

  • Property mode set to 100644
File size: 627 bytes
RevLine 
[d8b6c91]1import { configureStore } from '@reduxjs/toolkit';
2import { combineReducers } from 'redux';
3import authReducer from "./reducers/authReducer";
[19398ad]4import jobAdReducer from "./reducers/jobAdvertisementReducer";
[28b3398]5import applicationReducer from "./reducers/applicationReducer"
[d8b6c91]6
7// const rootReducer = combineReducers({
8// auth: AuthReducer
9// });
10//
11// export const store = configureStore({
12// reducer: rootReducer,
13// //middleware: thunk
14// });
15
16export const store = configureStore({
17 reducer: {
[19398ad]18 auth: authReducer,
[28b3398]19 jobAd: jobAdReducer,
20 appl: applicationReducer
[d8b6c91]21 },
22});
23
24//export default store;
Note: See TracBrowser for help on using the repository browser.