From dec8bce3e310652e76a4d2b87cf8e4baf9213837 Mon Sep 17 00:00:00 2001 From: Maximus Date: Fri, 19 Aug 2022 17:17:59 +0300 Subject: [PATCH] exactly added Footer and Header to base layout --- src/components/BaseLayout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/BaseLayout.tsx b/src/components/BaseLayout.tsx index 284c8ca..d9fa40f 100644 --- a/src/components/BaseLayout.tsx +++ b/src/components/BaseLayout.tsx @@ -11,11 +11,11 @@ type Props = { function BaseLayout({ header, footer, children, className }: Props) { return (
- {/*
*/} +
{children}
- {/*
); }