import { TransactionScreen } from "@/src/components/features/transactions/TransactionScreen"; import { DebtsSection } from "@/src/components/features/debts/DebtsSection"; import { ClaimsSection } from "@/src/components/features/debts/ClaimsSection"; import { View } from "react-native"; import { useTranslation } from "react-i18next"; export default function IchScreen() { const { t } = useTranslation(); return ( } /> ); }