| 8 | } |
| 9 | |
| 10 | interface CategoryProps { |
| 11 | categories: Category[]; |
| 12 | selectedCategory: string; |
| 13 | handleCategoryChange: (category: string) => void; |
| 14 | } |
| 15 | |
| 16 | export const Categories = ({ categories }: { categories: Category[] }) => { |
| 17 | const [selectedCategory, setSelectedCategory] = useRecoilState(category); |
nothing calls this directly
no outgoing calls
no test coverage detected