@mui/x-charts
Version:
The community edition of MUI X Charts components.
15 lines (14 loc) • 659 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.useStore = useStore;
var _ChartProvider = require("../../context/ChartProvider");
// This hook should be removed because user and us should not interact with the store directly, but with public/private APIs
function useStore() {
const context = (0, _ChartProvider.useChartContext)();
if (!context) {
throw new Error('MUI X Charts: Could not find the Charts context. ' + 'This happens when the component is rendered outside of a ChartsContainer parent component. ' + 'Wrap your component in a ChartsContainer or ChartsDataProvider.');
}
return context.store;
}