UNPKG

@nicecode/funny

Version:

funny,一些有趣的代码,funny code

14 lines (13 loc) 306 B
import { FC } from 'react'; import './index.less'; interface Nav3dProps { items: { label: string; value: string; link?: string; }[]; selectedKey: string; onSelect?: (item: Nav3dProps['items'][0]) => void; } declare const nav3D: FC<Nav3dProps>; export default nav3D;