catreact
Version:
Catavolt Core React Components
28 lines (27 loc) • 770 B
JavaScript
;
/**
* Created by rburson on 4/29/16.
*/
/**
* Created by rburson on 12/23/15.
*/
var React = require('react');
var catreact_core_1 = require('./catreact-core');
exports.CvQueryPane = 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();
},
render: function () {
return this._render();
}
});