File size: 221 Bytes
ca056f0
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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;