10 lines
119 B
React
10 lines
119 B
React
|
const ComponentTodo = ({ text }) => {
|
||
|
return (
|
||
|
<div>
|
||
|
{text}
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default ComponentTodo
|