11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
import type { Metadata } from "next"
|
|
import { ReportsClient } from "./reports-client"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Reports",
|
|
}
|
|
|
|
export default function ReportsPage() {
|
|
return <ReportsClient />
|
|
}
|