From 7385273b435a8cb1b70ee529d11ca8e6a238d4b6 Mon Sep 17 00:00:00 2001 From: Chandrapal Badshah <12944530+Chan9390@users.noreply.github.com> Date: Fri, 16 May 2025 12:23:21 +0530 Subject: [PATCH] Add layout to lighthouse config --- ui/app/(prowler)/lighthouse/config/layout.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ui/app/(prowler)/lighthouse/config/layout.tsx diff --git a/ui/app/(prowler)/lighthouse/config/layout.tsx b/ui/app/(prowler)/lighthouse/config/layout.tsx new file mode 100644 index 0000000000..270ce2529c --- /dev/null +++ b/ui/app/(prowler)/lighthouse/config/layout.tsx @@ -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 ( + + {children} + + ); +}