yahoo/scrollable

View on GitHub
examples/fancy-header/header.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 Header = React.createClass({

  render: function () {
    return (
      <div className="fancy-header">
        Fancy Header
      </div>
    );
  },

});

module.exports = Header;