| 90 | }; |
| 91 | |
| 92 | interface TodoCategoryForSelect { |
| 93 | readonly id: TodoCategoryTable["id"]; |
| 94 | readonly name: TodoCategoryTable["name"] | null; |
| 95 | } |
| 96 | |
| 97 | const TodoCategorySelect: FC<{ |
| 98 | categories: ReadonlyArray<TodoCategoryForSelect>; |
nothing calls this directly
no outgoing calls
no test coverage detected