UNPKG

framework-entersol-web

Version:

Framework based on bootstrap 5

20 lines (16 loc) 435 B
import Icons from "./media/icons"; import Component from "./component"; import Image from "./media/image"; import ListContainer from "./containers/list-container"; import TabsContainer from "./containers/tabs-container"; const COMPONENTS = { Component, TabsContainer, Icons, Image, ListContainer, } export default COMPONENTS; export const addComponents = (newComponents) => { Object.assign(COMPONENTS, newComponents); }