lark-cms
Version:
Multi terminal CMS component library
21 lines (20 loc) • 532 B
TypeScript
import React from "react";
interface Props {
/**
* 数据对象
*/
dataInfo?: any;
/**
* 配置的布局方式:authority 权限布局,
*/
layout?: string;
/**
* 登录用户的信息(如果提供了,方便展示 权限 层)
*/
loginUserInfo?: any;
}
/**
* 【基础组件】查看单个产品(主要用于列表展示)
*/
declare const YhwViewProductItemRN: ({ dataInfo, layout, loginUserInfo }: Props) => React.JSX.Element;
export default YhwViewProductItemRN;