Skip to content

Commit

Permalink
Update App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jessekorzan authored May 10, 2024
1 parent 1c7c60e commit ec74593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Card = (props) =>
const Layout = (props) =>
// Masonry layout of cards
// column-count : X
<div className={`layout` + `${props.style}`} style={{"columnCount" : props.columns}}>
<div className={`layout ${props.style}`} style={{"columnCount" : props.columns}}>
{props.cards.map( (card, index) =>
<Card key={index} card={card} active={props.active} handleClickCard={props.handleClickCard}/>
)}
Expand Down

0 comments on commit ec74593

Please sign in to comment.