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