preact-material-components
Version:
preact wrapper for "Material Components for the web"
16 lines (12 loc) • 335 B
JavaScript
;
module.exports = function(list) {
if (list.constructor !== Array) {
throw new Error('Item passed to .examples is not an array');
}
for (const item of list) {
const usage = item.usage || false;
const description = item.description || false;
this.example(usage, description);
}
return this;
};