catreact
Version:
Catavolt Core React Components
33 lines (32 loc) • 939 B
JavaScript
/**
* Created by rburson on 12/23/15.
*/
;
var React = require('react');
var catreact_core_1 = require('./catreact-core');
/*
***************************************************
* Render a ListContext
***************************************************
*/
exports.CvListPane = React.createClass({
mixins: [catreact_core_1.CvBaseMixin, catreact_core_1.CvQueryBase],
componentWillMount: function () {
this._componentWillMount();
},
componentWillReceiveProps: function (nextProps, nextContext) {
this._componentWillReceiveProps(nextProps, nextContext);
},
componentWillUnmount: function () {
this._componentWillUnmount();
},
getDefaultProps: function () {
return catreact_core_1.CvQueryBase._getDefaultProps();
},
listContext: function () {
return this.queryContext();
},
render: function () {
return this._render();
},
});