Files
wfh/src/app/page.tsx
2026-03-12 17:09:22 -05:00

10 lines
171 B
TypeScript

import ReportForm from "@/components/ReportForm";
export default function Home() {
return (
<main className="min-h-screen">
<ReportForm />
</main>
);
}