(e: React.RefObject<HTMLDivElement>)
| 31 | }, [typeFilter, topicFilter]) |
| 32 | |
| 33 | const clickDropdown = (e: React.RefObject<HTMLDivElement>) => { |
| 34 | if (e === typesRef && typesRef.current) typesRef.current.focus() |
| 35 | if (e === topicsRef && topicsRef.current) topicsRef.current.focus() |
| 36 | } |
| 37 | |
| 38 | const loadMore = () => { |
| 39 | if (articleCardRef.current) { |