| 4 | import { useEffect, useState } from 'react'; |
| 5 | |
| 6 | interface SearchResults { |
| 7 | /** Subject URLs for resources that match the query */ |
| 8 | results: string[]; |
| 9 | loading: boolean; |
| 10 | error?: Error; |
| 11 | } |
| 12 | |
| 13 | interface SearchOpts { |
| 14 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected