sf-acd / src /pages /index.tsx
Mikelue's picture
Add 9 files
ca056f0 verified
raw
history blame contribute delete
No virus
221 Bytes
import type { NextPage } from "next";
import type { Todo } from "../components/Todo";
const Home: NextPage = () => {
return (
<div>
<h1>Todo List</h1>
<TodoList />
</div>
);
};
export default Home;