mirror of
https://github.com/bendtherules/demo-trello-app.git
synced 2026-08-18 21:52:22 +00:00
Add basic Board component
This commit is contained in:
+10
-8
@@ -1,8 +1,10 @@
|
||||
import { configureStore } from '@reduxjs/toolkit';
|
||||
import counterReducer from '../features/counter/counterSlice';
|
||||
|
||||
export default configureStore({
|
||||
reducer: {
|
||||
counter: counterReducer,
|
||||
},
|
||||
});
|
||||
import { configureStore } from "@reduxjs/toolkit";
|
||||
import counterReducer from "../features/counter/counterSlice";
|
||||
import boardReducer from "../features/Board/boardSlice";
|
||||
|
||||
export default configureStore({
|
||||
reducer: {
|
||||
counter: counterReducer,
|
||||
board: boardReducer
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user