mirror of
https://github.com/plausible/analytics.git
synced 2024-12-21 08:31:29 +03:00
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
export const ComparisonContext = React.createContext({
|
||
|
data: {
|
||
|
enabled: false,
|
||
|
// timePeriod: '' // Saved for future update to allow for customizable compare period
|
||
|
},
|
||
|
modifyComparison: () => {}
|
||
|
});
|