source: node_modules/recharts/es6/context/PanoramaContext.js

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 393 bytes
Line 
1import * as React from 'react';
2import { createContext, useContext } from 'react';
3var PanoramaContext = /*#__PURE__*/createContext(null);
4export var useIsPanorama = () => useContext(PanoramaContext) != null;
5export var PanoramaContextProvider = _ref => {
6 var {
7 children
8 } = _ref;
9 return /*#__PURE__*/React.createElement(PanoramaContext.Provider, {
10 value: true
11 }, children);
12};
Note: See TracBrowser for help on using the repository browser.