Package Exports
- hardcore-client
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hardcore-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme

Front-end components for Pure JavaScript lovers❤️
var Sample = ViewController(function(self) {
self.parent = "body";
self.view = View([
TextField({label: "Name", dataKey: "name"}),
TextField({label: "Address", dataKey: "address"}),
TextField({label: "Phone number", dataKey: "phoneNumber"}),
Button({label: "JOIN", tapHandler: function() {
var data = self.data;
// Do as you like.
}})
]);
});
var sample = new Sample();
sample.data = {};