@carbon/ibm-products
Version:
Carbon for IBM Products
22 lines (20 loc) • 578 B
JavaScript
/**
* Copyright IBM Corp. 2020, 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import { createContext } from "react";
//#region src/components/Card/next/CardContext.tsx
/**
* Copyright IBM Corp. 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* Context for sharing Card state with child components
*/
const CardContext = createContext(void 0);
//#endregion
export { CardContext };