saleor-dashboard/src/components/Date/DateContext.tsx

7 lines
176 B
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import * as React from "react";
export const DateContext = React.createContext<number>(undefined);
const { Provider, Consumer } = DateContext;
export { Consumer, Provider };