mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-14 05:14:28 -08:00
22 lines
399 B
JavaScript
22 lines
399 B
JavaScript
|
|
import React from 'react'
|
||
|
|
import PropTypes from 'prop-types'
|
||
|
|
|
||
|
|
const Todo = ({ onClick, completed, text }) => (
|
||
|
|
<li
|
||
|
|
onClick={onClick}
|
||
|
|
style={{
|
||
|
|
textDecoration: completed ? 'line-through' : 'none'
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
{text}
|
||
|
|
</li>
|
||
|
|
)
|
||
|
|
|
||
|
|
Todo.propTypes = {
|
||
|
|
onClick: PropTypes.func.isRequired,
|
||
|
|
completed: PropTypes.bool.isRequired,
|
||
|
|
text: PropTypes.string.isRequired
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Todo
|