import { useLocale } from '../../contexts/Locale.jsx' import { useAsync } from '../../hooks/useAsync.js' import { fetchBugfixes } from '../../services/DataFetcher.js' import { Issue } from './Issue.jsx' interface Props { version: string } export function IssueList({ version }: Props) { const { locale } = useLocale() const { value: issues, loading } = useAsync(() => fetchBugfixes(version), [version]) return