// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. // See License.txt for license information. var SettingItemMin = require('../setting_item_min.jsx'); var SettingItemMax = require('../setting_item_max.jsx'); export default class DeveloperTab extends React.Component { constructor(props) { super(props); this.state = {}; } register() { $('#user_settings1').modal('hide'); $('#register_app').modal('show'); } render() { var appSection; var self = this; if (this.props.activeSection === 'app') { var inputs = []; inputs.push(
{'Register New Application'}
); appSection = ( ); } else { appSection = ( ); } return (

{'Developer Settings'}

{'Developer Settings'}

{appSection}
); } } DeveloperTab.defaultProps = { activeSection: '' }; DeveloperTab.propTypes = { activeSection: React.PropTypes.string, updateSection: React.PropTypes.func };