Created
November 22, 2018 17:35
-
-
Save scherler/a567a4e02f216bc2352a6ac4eae993d0 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
<List itemsPerRow={1}> | |
{selectedTeam!.environments.previews | |
.map(preview => ( | |
<ListItem | |
key={preview.key} | |
className={ShipyardStyles.mb_30} | |
onClick={() => console.log('select env', preview)}> | |
<div className={styles.environmentListItemContent}> | |
<h3 className={styles.environmentListItemHeader}>{preview.title}</h3> | |
<img src="https://cloudbees.github.io/core-sandbox/core/environments/core-sandbox/assets/avatar-x128-5b0a88e9a48110fb6e940d570d5938304fdde7fd4259c0cba2670b7c5535291d.jpg" alt="Johnny Appleseed" className="w-24 h-24 rounded-pill pin-t-20 pin-r-20 absolute"/> | |
<hr className={styles.environmentListItemHr}/> | |
</div> | |
</ListItem> | |
))} | |
</List> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment