Files: f916601c30ec4fbb7044e850bd0e2746d0b0c9d2 / app / todos / components / todo.js
190 bytesRaw
1 | import React from 'react' |
2 | |
3 | import style from './todo.css' |
4 | |
5 | export default class Todo extends React.Component { |
6 | render () { |
7 | return <div> |
8 | { this.props.todo.text } |
9 | </div> |
10 | } |
11 | } |
12 |
Built with git-ssb-web