UNPKG

@gechiui/components

Version:
18 lines (15 loc) 351 B
// @ts-nocheck /** * GeChiUI dependencies */ import { createContext } from '@gechiui/element'; export const SlotFillContext = createContext( { registerSlot: () => {}, unregisterSlot: () => {}, registerFill: () => {}, unregisterFill: () => {}, getSlot: () => {}, getFills: () => {}, subscribe: () => {}, } ); export default SlotFillContext;