-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChannel.jsx
23 lines (22 loc) · 867 Bytes
/
Channel.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Media = React.createClass({
propTypes: {
channel: React.PropTypes.object.isRequired
},
render() {
return (
<div className="card small">
<div className="card-image waves-effect waves-block waves-light">
<img className="activator" src="images/office.jpg"></img>
</div>
<div className="card-content">
<span className="card-title activator grey-text text-darken-4">Card Title<i className="material-icons right">more_vert</i></span>
<p><a href="#">This is a link</a></p>
</div>
<div className="card-reveal">
<span className="card-title grey-text text-darken-4">Card Title<i className="material-icons right">close</i></span>
<p>Here is some more information about this product that is only revealed once clicked on.</p>
</div>
</div>
)
}
});