Created
October 4, 2017 17:50
-
-
Save kenmazaika/e40944e2f01152d9faa98864af78cbaa 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
| import React from 'react'; | |
| class Album extends React.Component { | |
| render() { | |
| var title = "UI State of Mind"; | |
| var description = "Keep track of complex web application and manage state"; | |
| var lastPlayed = "3 minutes ago"; | |
| return ( | |
| <div className="album"> | |
| <h3>{title}</h3> | |
| <h4>{description}</h4> | |
| <span className="lastPlayed">{lastPlayed}</span> | |
| </div> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment