@gechiui/components
Version:
UI components for GeChiUI.
17 lines (16 loc) • 389 B
JavaScript
// @ts-nocheck
/**
* GeChiUI dependencies
*/
import { createContext } from '@gechiui/element';
export const SlotFillContext = createContext({
registerSlot: () => {},
unregisterSlot: () => {},
registerFill: () => {},
unregisterFill: () => {},
getSlot: () => {},
getFills: () => {},
subscribe: () => {}
});
export default SlotFillContext;
//# sourceMappingURL=context.js.map