victory-core
Version:
13 lines (12 loc) • 347 B
JavaScript
import React from "react";
import Timer from "./timer";
/**
* The React context object consumers may use to access or override the global
* timer.
*/
const TimerContext = /*#__PURE__*/React.createContext({
transitionTimer: new Timer(),
animationTimer: new Timer()
});
TimerContext.displayName = "TimerContext";
export default TimerContext;