Compare commits

..

No commits in common. "f7af1125c15f571786cd1db445d524e928c88708" and "ad550465997bdd083562d6932d4b11fb600b4d76" have entirely different histories.

2 changed files with 0 additions and 18 deletions

View File

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

View File

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