@gechiui/components
Version:
UI components for GeChiUI.
18 lines (15 loc) • 351 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;