Skip to content

Instantly share code, notes, and snippets.

@Bernardstanislas
Created March 13, 2016 19:05
Show Gist options
  • Save Bernardstanislas/7c310ee44ac1a9be7294 to your computer and use it in GitHub Desktop.
Save Bernardstanislas/7c310ee44ac1a9be7294 to your computer and use it in GitHub Desktop.
import React from 'react';
import TextInput from './TextInput';
const TodoItem = ({text}) => (
<li className="todo">
<div className="view">
<input type="checkbox" className="toggle" />
<label htmlFor="todo">
{text}
</label>
<button className="destroy"></button>
</div>
<TextInput /> // We add the TextInput component
</li>
);
export default TodoItem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment