import { BIG_RELAY_URLS, SEARCHABLE_RELAY_URLS } from '@/constants' import { TSearchParams } from '@/types' import NormalFeed from '../NormalFeed' import Profile from '../Profile' import { ProfileListBySearch } from '../ProfileListBySearch' import Relay from '../Relay' import TrendingNotes from '../TrendingNotes' export default function SearchResult({ searchParams }: { searchParams: TSearchParams | null }) { if (!searchParams) { return } if (searchParams.type === 'profile') { return } if (searchParams.type === 'profiles') { return } if (searchParams.type === 'notes') { return ( ) } if (searchParams.type === 'hashtag') { return ( ) } return }