Files
prowler/ui/app/(prowler)/integrations/page.tsx
2024-11-25 13:15:14 +01:00

14 lines
246 B
TypeScript

import React from "react";
import { Header } from "@/components/ui";
export default function Integrations() {
return (
<>
<Header title="Integrations" icon="tabler:puzzle" />
<p>Hi hi from Integration page</p>
</>
);
}