Compare commits

...

2 Commits

2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
const ComponentTodo = ({ text }) => {
return (
<div>
{text}
</div>
)
}
export default ComponentTodo

View File

@ -0,0 +1,9 @@
const ComponentTodo: FC<{ text: string }> = ({ text }) => {
return (
<div>
{text}
</div>
)
}
export default ComponentTodo