react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
42 lines • 1.84 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __assign = (this && this.__assign) || Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var __1 = require("../../..");
var NativeButton_1 = require("../NativeButton");
var styles = function () { return ({
container: {
width: '100%',
flexDirection: 'column',
}
}); };
var CNativeButtonsList = /** @class */ (function (_super) {
__extends(CNativeButtonsList, _super);
function CNativeButtonsList() {
return _super !== null && _super.apply(this, arguments) || this;
}
CNativeButtonsList.prototype.render = function () {
var _a = this.props, buttons = _a.buttons, classes = _a.classes;
return (React.createElement(__1.View, { style: classes.container }, buttons.map(function (buttonData, index) { return (React.createElement(NativeButton_1.NativeButton, __assign({}, buttonData))); })));
};
return CNativeButtonsList;
}(React.PureComponent));
exports.NativeButtonsList = __1.createStyles(styles, 'NativeButtonsList')(CNativeButtonsList);
//# sourceMappingURL=NativeButtonsList.js.map