We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de149e commit 6eaf7a1Copy full SHA for 6eaf7a1
src/app/page.tsx
@@ -3,6 +3,7 @@
3
import TodoForm from "@/components/TodoForm";
4
import TodoItem from "@/components/TodoItem";
5
import { useStore } from "@/store";
6
+import Link from "next/link";
7
import { useEffect } from "react";
8
9
const Home: React.FC = () => {
@@ -17,6 +18,7 @@ const Home: React.FC = () => {
17
18
<div className="container mx-auto max-w-md p-4">
19
<TodoForm />
20
<h1 className="text-2xl font-bold mb-4">Todo List</h1>
21
+ <Link href="/api/python">Visit Python</Link>
22
{todos.length === 0 ? (
23
<p className="text-center">No Todos Found</p>
24
) : (
0 commit comments