-
-
Save nelsonomuto/bd74a45a20846f5292081a0e50054601 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import PropTypes from 'prop-types' | |
import Baz from 'baz' | |
class Foo extends Component { | |
static propTypes = { | |
list: PropTypes.array, | |
} | |
static defaultProps = { | |
list: '', | |
} | |
items = (list) => { | |
const filteredList = list | |
.filter(i => i !== null) | |
.map(item => ({ bar: item.baz })) | |
return filteredList.map((item, index) => ( | |
<Baz | |
key={index} | |
bar={item.bar} | |
something={item.bar} | |
/> | |
)) | |
} | |
render() { | |
const { list } = this.props | |
return ( | |
<div> | |
{list && ( | |
<div> | |
{`Count is ${this.props.count} for items: `} {this.items(list)} | |
</div> | |
)} | |
{!list && ( | |
{`Count is ${this.props.count} for items: `} n/a | |
)} | |
</div> | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment