11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
|
import { Metadata } from "next";
|
||
|
|
import { ZammadWrapper } from "../../(main)/_components/ZammadWrapper";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Reporting",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function Page() {
|
||
|
|
return <ZammadWrapper path="#report" />;
|
||
|
|
}
|
||
|
|
|