feat(FE-92-93-105-106): slicing ui chickin DOC and integrate with API

This commit is contained in:
randy-ar
2025-10-23 13:30:27 +07:00
parent 791e8e787c
commit eaf41805d7
12 changed files with 962 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
import SuspenseHelper from "@/components/helper/SuspenseHelper"
const Layout = ({
children
}: Readonly<{
children: React.ReactNode
}>) => {
return <SuspenseHelper>{children}</SuspenseHelper>
}
export default Layout;