UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

7 lines 444 B
import { createContext } from '@lit/context'; const carouselContext = createContext(Symbol('carousel-context')); const tileManagerContext = createContext(Symbol('tile-manager-context')); const chatContext = createContext(Symbol('chat-context')); const chatUserInputContext = createContext(Symbol('chat-user-input-context')); export { carouselContext, tileManagerContext, chatContext, chatUserInputContext, }; //# sourceMappingURL=context.js.map