Compare commits
2 Commits
ad55046599
...
f7af1125c1
Author | SHA1 | Date |
---|---|---|
Sage Vaillancourt | f7af1125c1 | |
Sage Vaillancourt | 7fd707b558 |
|
@ -0,0 +1,9 @@
|
||||||
|
const ComponentTodo = ({ text }) => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{text}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ComponentTodo
|
|
@ -0,0 +1,9 @@
|
||||||
|
const ComponentTodo: FC<{ text: string }> = ({ text }) => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{text}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ComponentTodo
|
Loading…
Reference in New Issue