- Add features/search/components/search: types, useSearchSuggestions, SearchInput, SearchDropdown, SearchSkeleton - Search.tsx orchestrator; re-export from components/search for GlobalSearchBar - No console.log; logger only; layout primitives in stories Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
/**
|
|
* Re-export from features/search. Implementation in features/search/components/search.
|
|
*/
|
|
export {
|
|
Search,
|
|
SearchSkeleton,
|
|
type SearchResult,
|
|
type SearchProps,
|
|
} from '@/features/search/components/search';
|