yahoo/scrollable

View on GitHub
examples/consumption/bot.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 BotBar = React.createClass({

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

});

module.exports = BotBar;