19 lines
360 B
CoffeeScript
19 lines
360 B
CoffeeScript
context = window
|
|
|
|
@SessionOtherTracks = React.createClass({
|
|
|
|
render: () ->
|
|
|
|
noOthers = `<div className="when-empty"></div>`
|
|
|
|
active = noOthers
|
|
|
|
`<div className="session-other-tracks">
|
|
<h2>other live tracks</h2>
|
|
<SessionInviteMusiciansBtn />
|
|
<div className="session-tracks-scroller">
|
|
{active}
|
|
</div>
|
|
</div>`
|
|
})
|