UNPKG

fm-lp-factory

Version:

package created to build web ui components for FidelizarMais LP services

15 lines (14 loc) 403 B
import npsCardList from "./npsCardList.js"; import npsCardListReview from "./npsCardListReview.js"; export default (component) => { switch (component.type) { case "nps-card-list": npsCardList(component); break; case "nps-card-list-review": npsCardListReview(component); break; default: break; } }