/** @jsx React.DOM */ var Variable = React.createClass({ render: function() { var updaters = this.props.data.updaters.map(function (member) { return
  • }.bind(this)); var fetchers = this.props.data.fetchers.map(function (member) { return
  • }.bind(this)); var resourceId = [ conjurConfiguration.account, 'variable', this.props.data.variable.id ].join(':') return (

    Variable {this.props.data.variable.id}

    Owner
    Updaters
      {updaters}
    Fetchers
      {fetchers}
    ); } });