UNPKG

368 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 ExpansionPanelContext = React.createContext({});
8
9if (process.env.NODE_ENV !== 'production') {
10 ExpansionPanelContext.displayName = 'ExpansionPanelContext';
11}
12
13export default ExpansionPanelContext;
\No newline at end of file