import React from 'react';
import other from './other.jsx';

export default React.createClass({
  render: function() {
    return <div>
      foo
      {this.props.children}
    </div>
  }
});
