Skip to content

Commit

Permalink
feat: react redux 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed Jun 23, 2024
1 parent 6721950 commit 6958ad2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/store/modalSlice.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { createSlice } from "@reduxjs/toolkit";

export const modalSlice = createSlice({
name: "smr/modal",
initialState: {},
reducers: {},
});
5 changes: 5 additions & 0 deletions src/store/store.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { configureStore } from "@reduxjs/toolkit";

export const store = configureStore({
reducer: {},
});

0 comments on commit 6958ad2

Please sign in to comment.