@atlaskit/editor-core
Version:
A package contains Atlassian editor core functionality
15 lines • 516 B
JavaScript
import * as tslib_1 from "tslib";
import * as React from 'react';
import { PureComponent } from 'react';
var Underline = (function (_super) {
tslib_1.__extends(Underline, _super);
function Underline() {
return _super !== null && _super.apply(this, arguments) || this;
}
Underline.prototype.render = function () {
return React.createElement("u", null, this.props.children);
};
return Underline;
}(PureComponent));
export default Underline;
//# sourceMappingURL=underline.js.map