web/src/app/cart/checkout/page.jsx

17 lines
267 B
React
Raw Normal View History

2024-02-27 21:23:20 +03:30
import CheckoutData from "@comp/AppsComponent/CheckoutData/page";
import React from "react";
2024-02-11 17:24:30 +03:30
2024-02-27 21:23:20 +03:30
export const metadata = {
title: "اعتبار سنجی خرید",
};
2024-02-11 17:24:30 +03:30
2024-02-16 19:10:32 +03:30
const Page = () => {
2024-02-11 17:24:30 +03:30
return (
<>
2024-02-27 21:23:20 +03:30
<CheckoutData />
2024-02-11 17:24:30 +03:30
</>
);
};
2024-02-16 19:10:32 +03:30
export default Page;