@shopify/polaris
Version:
Shopify’s admin product component library
13 lines (10 loc) • 419 B
JavaScript
import { createContext } from 'react';
const RowContext = /*#__PURE__*/createContext({});
const RowHoveredContext = /*#__PURE__*/createContext(undefined);
const scrollDefaultContext = {
scrollableContainer: null,
canScrollLeft: false,
canScrollRight: false
};
const ScrollContext = /*#__PURE__*/createContext(scrollDefaultContext);
export { RowContext, RowHoveredContext, ScrollContext, scrollDefaultContext };