Compare commits
No commits in common. "f7af1125c15f571786cd1db445d524e928c88708" and "ad550465997bdd083562d6932d4b11fb600b4d76" have entirely different histories.
f7af1125c1
...
ad55046599
|
@ -1,9 +0,0 @@
|
||||||
const ComponentTodo = ({ text }) => {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
{text}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default ComponentTodo
|
|
|
@ -1,9 +0,0 @@
|
||||||
const ComponentTodo: FC<{ text: string }> = ({ text }) => {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
{text}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default ComponentTodo
|
|
Loading…
Reference in New Issue