@janiscommerce/ui-native
Version:
components library for Janis app
15 lines (14 loc) • 396 B
TypeScript
import { FC, ReactNode } from 'react';
import { ViewProps } from 'react-native';
export interface Block {
component: ReactNode;
hasSeparator?: boolean;
}
export interface MainCardListProps extends ViewProps {
displayId: string;
children?: ReactNode;
blocks?: Block[];
isSelected?: boolean;
}
declare const MainCardList: FC<MainCardListProps>;
export default MainCardList;