ant-design/components/list/context.ts
2023-06-05 09:56:19 +08:00

11 lines
227 B
TypeScript

import React from 'react';
export interface ListConsumerProps {
grid?: any;
itemLayout?: string;
}
export const ListContext = React.createContext<ListConsumerProps>({});
export const ListConsumer = ListContext.Consumer;