git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: b0260714125b1a814ed76eaca838d164ae23101d

Files: b0260714125b1a814ed76eaca838d164ae23101d / app / todos / components / todo-list.js

249 bytesRaw
1import React from 'react'
2
3export default class TodoList extends React.Component {
4 render () {
5 return <ul>
6 {
7 React.Children.map(this.props.children, todo => {
8 return <li>{ todo }</li>
9 })
10 }
11 </ul>
12 }
13}
14

Built with git-ssb-web