jam-cloud/web/app/assets/javascripts/react-components/SessionOtherTracks.js.jsx.c...

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>`
})