import React from 'react'; import { RowProps } from '../grid/row'; import { ColProps } from '../grid/col'; export interface Grid extends RowProps, ColProps {} export interface ListContextValue { onRightClick?: React.MouseEventHandler; onClick?: React.MouseEventHandler; grid?: Grid; } const ListContext = React.createContext(null); export default ListContext;