@desci-labs/frontend-components
Version:
A library for commonly used components on the DeSci Frontend web apps
9 lines • 375 B
TypeScript
import { Dispatch, SetStateAction } from 'react';
type Props = {
searchString: string;
setSearchString: Dispatch<SetStateAction<string>>;
explorePageTab?: number;
};
declare function ExploreSearchBar({ searchString, setSearchString }: Props): import("react/jsx-runtime").JSX.Element;
export default ExploreSearchBar;
//# sourceMappingURL=ExploreSearchBar.d.ts.map