// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. // See License.txt for license information. module.exports = React.createClass({ displayName: 'SettingsItemMin', propTypes: { title: React.PropTypes.string, disableOpen: React.PropTypes.bool, updateSection: React.PropTypes.func, describe: React.PropTypes.string }, render: function() { var editButton = ''; if (!this.props.disableOpen) { editButton =
  • Edit
  • ; } return ( ); } });