Skip to content

Instantly share code, notes, and snippets.

@steverob
Last active December 1, 2017 04:05
Show Gist options
  • Save steverob/4c1a21fa7c8cd54d39d628f693e84668 to your computer and use it in GitHub Desktop.
Save steverob/4c1a21fa7c8cd54d39d628f693e84668 to your computer and use it in GitHub Desktop.
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