mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-01-25 02:08:11 +00:00
14 lines
246 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|