Skip to content

Instantly share code, notes, and snippets.

@kenmazaika
Created October 4, 2017 17:50
Show Gist options
  • Save kenmazaika/e40944e2f01152d9faa98864af78cbaa to your computer and use it in GitHub Desktop.
Save kenmazaika/e40944e2f01152d9faa98864af78cbaa to your computer and use it in GitHub Desktop.
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