import { View, ScrollView, Pressable } from 'react-native'; import { router } from 'expo-router'; import { Text } from '@/components/ui/text'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { FileText, Download, ChevronRight, BarChart3 } from '@/lib/icons'; import { MOCK_REPORTS } from '@/lib/mock-data'; const PRIMARY = '#ea580c'; export default function ReportsScreen() { return ( Reports Monthly reports and PDF exports. Generate from the web app or view here. {MOCK_REPORTS.map((r) => ( {r.title} {r.period} Generated {r.generatedAt} ))} ); }