Skip to content

Commit

Permalink
Update App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jessekorzan authored Feb 4, 2019
1 parent 2a109ae commit 1c7c60e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ class App extends Component {
return (
<div>
<nav>
<a href="#1" id="1" onClick={()=>this.setState({ layout: "masonry", columns: 5, cards: this.state.cardsOG })}>five-column (no reorder)</a>
<a href="#2" id="2" onClick={()=>this.handleButtonClick("masonry", 5)}>5-column</a>
<a href="#3" id="3" onClick={()=>this.handleButtonClick("two-column", 2)}>2-column</a>
<a href="#5" id="5" onClick={()=>this.handleButtonClick("flex", 3)}>3-column</a>
<a href="#4" id="4" onClick={()=>this.handleButtonClick("single-column", 1)}>1-column</a>
<a href="#1" id="1" onClick={()=>this.setState({ layout: "masonry", columns: 5, cards: this.state.cardsOG })}>5-col (no reorder)</a>
<a href="#2" id="2" onClick={()=>this.handleButtonClick("masonry", 5)}>5-col</a>
<a href="#3" id="3" onClick={()=>this.handleButtonClick("two-column", 2)}>2-col</a>
<a href="#5" id="5" onClick={()=>this.handleButtonClick("flex", 3)}>3-col</a>
<a href="#4" id="4" onClick={()=>this.handleButtonClick("single-column", 1)}>1-col</a>
</nav>
<div className="layout--wrapper">
<div className="info">
Expand Down

0 comments on commit 1c7c60e

Please sign in to comment.