UNPKG

374 BJavaScriptView Raw
1'use client';
2
3import * as React from 'react';
4
5/**
6 * @ignore - internal component.
7 * @type {React.Context<{} | {expanded: boolean, disabled: boolean, toggle: () => void}>}
8 */
9const AccordionContext = /*#__PURE__*/React.createContext({});
10if (process.env.NODE_ENV !== 'production') {
11 AccordionContext.displayName = 'AccordionContext';
12}
13export default AccordionContext;
\No newline at end of file