mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-14 05:14:28 -08:00
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
const h = React.createElement
|
|
|
|
const Todo = ({ onClick, completed, text }) => (
|
|
h('li', {
|
|
onClick,
|
|
style: {
|
|
textDecoration: completed ? 'line-through' : 'none'
|
|
},
|
|
}, text)
|
|
)
|
|
|
|
export default Todo
|