feat(FE-62): add MovementEdit and MovementDetail components for inventory movement management

This commit is contained in:
rstubryan
2025-10-09 14:34:25 +07:00
parent 1ea9ee3069
commit c17ffc6aff
3 changed files with 107 additions and 0 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;