mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
12 lines
376 B
TypeScript
12 lines
376 B
TypeScript
import { Layout } from "src/components/common"
|
|
import { DeliveryAndPolicyContent, DeliveryAndPolicyBreadCrumb } from "src/components/modules/delivery-policy"
|
|
|
|
export default function DeliveryAndPolicyPage () {
|
|
return (
|
|
<>
|
|
<DeliveryAndPolicyBreadCrumb />
|
|
<DeliveryAndPolicyContent />
|
|
</>
|
|
)
|
|
}
|
|
DeliveryAndPolicyPage.Layout = Layout |