diff --git a/redux-example/src/App.css b/redux-example/src/App.css index b9d355d..32455c0 100644 --- a/redux-example/src/App.css +++ b/redux-example/src/App.css @@ -40,3 +40,22 @@ .read-the-docs { color: #888; } + +form { + display: flex; + justify-content: center; + gap: 20px; +} + +input { + outline: none; + padding: 12px 20px; + border-radius: 8px; + border: none; +} + +.tasks { + display: flex; + border: solid; + margin-top: 20px; +} diff --git a/redux-example/src/App.jsx b/redux-example/src/App.jsx index c594298..3af8ec3 100644 --- a/redux-example/src/App.jsx +++ b/redux-example/src/App.jsx @@ -4,6 +4,7 @@ import "./App.css"; import { useSelector, useDispatch } from "react-redux"; import { increment, decrement, setValue } from "./app/slices/counterSlice"; import Header from "./components/Header"; +import Tasks from "./components/Tasks"; function App() { const counter = useSelector((state) => state.counter.value); @@ -48,6 +49,7 @@ function App() {
Click on the Vite and React logos to learn more
+Lista de tareas
+