Last active
December 1, 2017 04:05
-
-
Save steverob/4c1a21fa7c8cd54d39d628f693e84668 to your computer and use it in GitHub Desktop.
This file contains 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
class Filters extends React.Component { | |
render() { | |
return ( | |
<> | |
<PriceFilter price={this.props.filterSelections.price} /> | |
<AgeFilter ages={this.props.filterSelections.ages} /> | |
<BrandFilter brands={this.props.filterSelections.brands} /> | |
</> | |
); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment