refactor(FE-170,174,175): add layout component and enhance API data fetching limits

This commit is contained in:
rstubryan
2025-11-18 09:40:35 +07:00
parent b6ac8026c7
commit 38cab1464c
3 changed files with 64 additions and 5 deletions
@@ -0,0 +1,11 @@
import SuspenseHelper from '@/components/helper/SuspenseHelper';
const Layout = ({
children,
}: Readonly<{
children: React.ReactNode;
}>) => {
return <SuspenseHelper>{children}</SuspenseHelper>;
};
export default Layout;