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

7 lines
171 B
TypeScript
Raw Normal View History

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