saleor-dashboard/src/components/AppLayout/AppActionContext.tsx

8 lines
156 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
const AppActionContext = React.createContext<React.RefObject<HTMLDivElement>>(
undefined
);
export default AppActionContext;