/**
 * @jsx React.DOM
 */

var FixtureComponent = React.createClass({
  render: function() {
    return (
      <p>Howdy</p>
    );
  }
});
