var React = require('react'); var ProgressBarController = require("../../../../src/controllers/molecules/ProgressBar"); module.exports = React.createClass({ displayName: 'ProgressBar', mixins: [ProgressBarController], render: function() { // Would use an HTML5 progress tag but if that doesn't animate if you // use the HTML attributes rather than styles var progressStyle = { width: ((this.props.value / this.props.max) * 100)+"%" }; return (
); } });