change: orders history url

This commit is contained in:
Mahyar Khanbolooki
2025-08-06 20:42:18 +03:30
parent 97307090ab
commit 0f62cf1bea
3 changed files with 1 additions and 1 deletions
@@ -0,0 +1,16 @@
export const metadata = {
title: 'Orders',
}
export default function MenuLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<>
{children}
</>
);
}