UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

10 lines (9 loc) 249 B
import type { FC } from 'react'; import type { Dept } from '../type'; import './index.less'; export interface DeptListProps { value: Dept[]; onClick: (res: Dept) => void; } declare const DeptList: FC<DeptListProps>; export default DeptList;