From 8f00e9924576c8f9068c0abcd045107fe4aebf63 Mon Sep 17 00:00:00 2001 From: Aaron Couch Date: Fri, 13 Sep 2024 07:29:50 -0400 Subject: [PATCH] Update layout.tsx --- frontend/src/app/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index e914be1af..993d66550 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -6,5 +6,9 @@ type Props = { }; export default function RootLayout({ children }: Props) { - return children; + return ( + + {children} + + ); }