@wordpress/components
Version:
UI components for WordPress.
11 lines (10 loc) • 317 B
JavaScript
// packages/components/src/card/context.ts
import { createContext, useContext } from "@wordpress/element";
var CardContext = createContext({});
CardContext.displayName = "CardContext";
var useCardContext = () => useContext(CardContext);
export {
CardContext,
useCardContext
};
//# sourceMappingURL=context.js.map