UNPKG

feat.js

Version:

The Feat.JS Framework; Easy, powerful and fast.

28 lines (25 loc) 643 B
module.exports = { name: "Container", FeatAttributesSupport: true, description: "Container Div", selfClosing: false, attributes: [ { name: "id", type: "string", description: "The id of the container", required: false } ], code: (attributes, content, data, registerComponent) => { /* Src: "" */ let attr = []; if (attributes.id) attr.push(`id="${attributes.id}"`); return ` <div class="container" ${attr.join(" ")}> ${content} </div>`; } }