UNPKG

phx-react

Version:

PHX REACT

10 lines (9 loc) 260 B
import { FC } from 'react'; interface ISelectSortProps { sortItem: any; activeMenu: any; selectArray: Array<any>; onChangeSelect(item: any, columnName: string): void; } declare const SelectSort: FC<ISelectSortProps>; export default SelectSort;