This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // reduxTodoStore.ts | |
| import { legacy_createStore as createStore } from "redux"; | |
| export type Todo = { | |
| id: number; | |
| title: string; | |
| done: boolean; | |
| }; | |
| export type TodosState = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test | |
| test |