From 8f50d2fb08bcce5d9b95860f96fa47ac242f27bf Mon Sep 17 00:00:00 2001 From: Sergiy Dybskiy Date: Sat, 8 Jun 2024 13:59:33 -0400 Subject: [PATCH] Update Main.tsx Fix layout component to remove the unnecessary `;` --- template/web/src/components/layout/Main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/web/src/components/layout/Main.tsx b/template/web/src/components/layout/Main.tsx index a3cbe600..6a32aa5e 100644 --- a/template/web/src/components/layout/Main.tsx +++ b/template/web/src/components/layout/Main.tsx @@ -1,7 +1,7 @@ export default function Main({ children }: { children: React.ReactNode }) { return (
-
{children}
; +
{children}
); }