|
@@ -25,6 +25,7 @@ type Props = {
|
|
mediaWidget: ReactNode;
|
|
mediaWidget: ReactNode;
|
|
sportSwiperWidget: ReactNode;
|
|
sportSwiperWidget: ReactNode;
|
|
categoryWidget: ReactNode;
|
|
categoryWidget: ReactNode;
|
|
|
|
+ navigateWidget: ReactNode;
|
|
group: any;
|
|
group: any;
|
|
};
|
|
};
|
|
|
|
|
|
@@ -44,6 +45,7 @@ const Layout: FC<PropsWithChildren<Props>> = async (props) => {
|
|
mediaWidget,
|
|
mediaWidget,
|
|
sportSwiperWidget,
|
|
sportSwiperWidget,
|
|
clientWidget,
|
|
clientWidget,
|
|
|
|
+ navigateWidget,
|
|
categoryWidget,
|
|
categoryWidget,
|
|
} = props;
|
|
} = props;
|
|
|
|
|
|
@@ -71,6 +73,10 @@ const Layout: FC<PropsWithChildren<Props>> = async (props) => {
|
|
<div className="px-spacing-x">
|
|
<div className="px-spacing-x">
|
|
<Suspense fallback={<NoticePlaceHolder />}>{noticeWidget}</Suspense>
|
|
<Suspense fallback={<NoticePlaceHolder />}>{noticeWidget}</Suspense>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div className="px-spacing-x">
|
|
|
|
+ <Suspense fallback={<Placeholder />}>{navigateWidget}</Suspense>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
{/* <Box>
|
|
{/* <Box>
|
|
{categoryWidget}
|
|
{categoryWidget}
|
|
</Box> */}
|
|
</Box> */}
|