/* eslint-disable @typescript-eslint/no-explicit-any */ import { SearchInputState } from 'app/features/search/state/search-input'; import PerfectScrollbar from 'react-perfect-scrollbar'; import { useRecoilValue } from 'recoil'; import SearchResulsDriveItems from './tabs/drive'; export const SearchResultsIndex = () => { return ( <> ); }; const SearchCounterBadge = (props: { count: number }) => { const count = props.count < 100 ? props.count : '99+'; return (
{count}
); };