mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 04:14:18 +00:00
17 lines
282 B
TypeScript
17 lines
282 B
TypeScript
import { useState } from 'react'
|
|
import {
|
|
Layout
|
|
} from 'src/components/common'
|
|
import { DeliveryAndPolicyPage } from 'src/components/modules/delivery-policy'
|
|
|
|
|
|
export default function Test() {
|
|
return (
|
|
<>
|
|
<DeliveryAndPolicyPage />
|
|
</>
|
|
)
|
|
}
|
|
|
|
Test.Layout = Layout
|