import { View, ScrollView, Pressable } from "react-native"; import { useSirouRouter } from "@sirou/react-native"; import { AppRoutes } from "@/lib/routes"; 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() { const nav = useSirouRouter(); 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} ))} ); }