drf-react-by-schema
Version:
Components and Tools for building a React App having Django Rest Framework (DRF) as server
9 lines • 393 B
TypeScript
import React from 'react';
import { PaginationModel } from '../../@types';
type MobileSearchBarProps = {
paginationModel: PaginationModel;
setPaginationModel: (x: PaginationModel) => void;
};
declare function MobileSearchBar({ paginationModel, setPaginationModel }: MobileSearchBarProps): React.JSX.Element;
export default MobileSearchBar;
//# sourceMappingURL=MobileSearchBar.d.ts.map