UNPKG

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