File size: 276 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import React from 'react';
import type { ListGridType } from '.';
export interface ListConsumerProps {
grid?: ListGridType;
itemLayout?: string;
}
export const ListContext = React.createContext<ListConsumerProps>({});
export const ListConsumer = ListContext.Consumer;
|