10 lines
141 B
TypeScript
10 lines
141 B
TypeScript
|
const ComponentTodo: FC<{ text: string }> = ({ text }) => {
|
||
|
return (
|
||
|
<div>
|
||
|
{text}
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default ComponentTodo
|