meraproject/content/modulebz/js/module/dash/common/DashTitle.js

23 lines
456 B
JavaScript
Raw Normal View History

var DashTitle;
export default window.DashTitle = DashTitle = class DashTitle extends React.Component {
constructor(props) {
super(props);
}
render() {
var link, title;
title = this.props.title;
link = this.props.link;
if (link) {
title = /*#__PURE__*/React.createElement("a", {
href: link
}, title);
}
return /*#__PURE__*/React.createElement("div", {
className: "h1 mb0"
}, title);
}
};