| 10 | import LanguageToggle from './components/LanguageToggle'; |
| 11 | |
| 12 | interface Article { |
| 13 | id: number; |
| 14 | title: string; |
| 15 | url: string; |
| 16 | image?: string; |
| 17 | category?: string; |
| 18 | created_at: string; |
| 19 | author: string; |
| 20 | comments: number; |
| 21 | reactions: number; |
| 22 | } |
| 23 | |
| 24 | export default function HomePage() { |
| 25 | const { t } = useApp(); |
nothing calls this directly
no outgoing calls
no test coverage detected