Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mikelue
/
sf-acd
like
0
Running
App
Files
Files
Community
ca056f0
sf-acd
/
src
/
pages
/
index.tsx
Mikelue
Add 9 files
ca056f0
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
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
;