Skip to content

Commit 6eaf7a1

Browse files
committed
updated
1 parent 3de149e commit 6eaf7a1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/app/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import TodoForm from "@/components/TodoForm";
44
import TodoItem from "@/components/TodoItem";
55
import { useStore } from "@/store";
6+
import Link from "next/link";
67
import { useEffect } from "react";
78

89
const Home: React.FC = () => {
@@ -17,6 +18,7 @@ const Home: React.FC = () => {
1718
<div className="container mx-auto max-w-md p-4">
1819
<TodoForm />
1920
<h1 className="text-2xl font-bold mb-4">Todo List</h1>
21+
<Link href="/api/python">Visit Python</Link>
2022
{todos.length === 0 ? (
2123
<p className="text-center">No Todos Found</p>
2224
) : (

0 commit comments

Comments
 (0)