hymn
v0.0.4
Published
React audio player component
Downloads
4
Readme
hymn
Information
This is a work in progress. Follow @contrahacks or @wearefractal for an update when it is finished.
Usage
var player = require('hymn');
var A = React.createClass({
render: function(){
return (
<div>
<h3>Cool Song</h3>
<player src='file.mp3' title='Cool Song' album='Cool Songs' artist='Mr Cool Song' artwork='coolsong.jpg'/>
</div>
);
}
});