gfs-react-redux-twoway-binding
Version:
18 lines • 486 B
JavaScript
;
var Hello = (function () {
function Hello(message) {
if (message === void 0) { message = "welcome to futureteam family !"; }
this.message = message;
this.log();
}
Hello.prototype.log = function () {
console.dir(this.message);
};
Hello.prototype.getMessage = function () {
return this.message;
};
return Hello;
}());
exports.__esModule = true;
exports["default"] = Hello;
//# sourceMappingURL=Hello.js.map