MCPcopy Create free account
hub / github.com/code100x/daily-code / CategoryProps

Interface CategoryProps

apps/web/components/Categories.tsx:10–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8}
9
10interface CategoryProps {
11 categories: Category[];
12 selectedCategory: string;
13 handleCategoryChange: (category: string) => void;
14}
15
16export const Categories = ({ categories }: { categories: Category[] }) => {
17 const [selectedCategory, setSelectedCategory] = useRecoilState(category);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected