yahoo/scrollable

View on GitHub
examples/consumption/top.js

Summary

Maintainability
A
30 mins
Test Coverage
/* Copyright 2015, Yahoo Inc.
   Copyrights licensed under the MIT License.
   See the accompanying LICENSE file for terms. */

var React = require('react');
var TopBar = React.createClass({

  render: function () {
    return (
      <div className="top-bar generic-bar">
        Consumption Mode
      </div>
    );
  },

});

module.exports = TopBar;