Files
leporello-js/docs/examples/todos-redux/src/components/Todo.js

13 lines
217 B
JavaScript
Raw Normal View History

2023-06-15 20:56:27 +03:00
const h = React.createElement
2023-06-15 18:16:56 +03:00
const Todo = ({ onClick, completed, text }) => (
2023-06-15 20:56:27 +03:00
h('li', {
onClick,
style: {
2023-06-15 18:16:56 +03:00
textDecoration: completed ? 'line-through' : 'none'
2023-06-15 20:56:27 +03:00
},
}, text)
2023-06-15 18:16:56 +03:00
)
export default Todo