mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 21:11:53 +00:00
Add layout to lighthouse config
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import "@/styles/globals.css";
|
||||
|
||||
import React from "react";
|
||||
|
||||
import { ContentLayout } from "@/components/ui";
|
||||
|
||||
interface ChatbotConfigLayoutProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export default function ChatbotConfigLayout({
|
||||
children,
|
||||
}: ChatbotConfigLayoutProps) {
|
||||
return (
|
||||
<ContentLayout title="Configure Lighthouse" icon="lucide:settings">
|
||||
{children}
|
||||
</ContentLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user