Remove unused action import from App.tsx

This commit is contained in:
Jason Zhu 2023-03-02 18:03:41 +11:00
parent 534cfb94af
commit 2ff5f08cd6

View File

@ -3,7 +3,7 @@ import { useSelector, useDispatch } from "react-redux";
import Todo from "./Todo";
import {TodoItem} from "./types";
import { ADD_TODO, TOGGLE_TODO, DELETE_TODO } from "./reducers";
import { ADD_TODO } from "./reducers";
function App() {
const [text, setText] = useState("");