6 lines
128 B
TypeScript
6 lines
128 B
TypeScript
import { createStore } from "redux";
|
|
|
|
import { todoReducer } from "./reducers";
|
|
|
|
export const store = createStore(todoReducer);
|