| 1 | import { useState, useEffect } from 'react'; |
| 2 | |
| 3 | interface ProcessedProject { |
| 4 | id: string; |
| 5 | owner: string; |
| 6 | repo: string; |
| 7 | name: string; |
| 8 | repo_type: string; |
| 9 | submittedAt: number; |
| 10 | language: string; |
| 11 | } |
| 12 | |
| 13 | export function useProcessedProjects() { |
| 14 | const [projects, setProjects] = useState<ProcessedProject[]>([]); |
nothing calls this directly
no outgoing calls
no test coverage detected