catreact
Version:
Catavolt Core React Components
16 lines (15 loc) • 380 B
JavaScript
/**
* Created by rburson on 4/25/16.
*/
;
var React = require('react');
var catreact_core_1 = require('./../core/catreact-core');
exports.CvWebNavigator = React.createClass({
mixins: [catreact_core_1.CvBaseMixin],
render: function () {
if (this.props.url) {
window.open(this.props.url, "_blank");
}
return null;
}
});