From 323b0ea1282abc0945cef1ebf8185bdf9a156f5d Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Tue, 9 Jan 2024 15:32:19 -0500 Subject: Feedback button --- src/app/groups/layout.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/app/groups/layout.tsx') diff --git a/src/app/groups/layout.tsx b/src/app/groups/layout.tsx index 8c221e1..dadd3a1 100644 --- a/src/app/groups/layout.tsx +++ b/src/app/groups/layout.tsx @@ -1,9 +1,13 @@ +import { FeedbackButton } from '@/components/feedback-button/feedback-button' import { PropsWithChildren } from 'react' export default function GroupsLayout({ children }: PropsWithChildren<{}>) { return ( -
- {children} -
+ <> +
+ {children} +
+ + ) } -- cgit v1.3