UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

14 lines (13 loc) 393 B
/** * @file GridNav * @description 金刚位宫格导航 参考react-vant */ import React from 'react'; import type { GridNavItemProps, GridNavProps } from '../types'; type InternalProps = { parent?: GridNavProps; index?: number; }; export declare const GridNavItem: React.FC<GridNavItemProps & InternalProps>; declare const GridNav: React.FC<GridNavProps>; export default GridNav;