UNPKG

catreact

Version:

Catavolt Core React Components

29 lines (28 loc) 833 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * 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(); } });