20 lines
482 B
TypeScript
20 lines
482 B
TypeScript
import BreadCrumb from '@/components/bread-crumb'
|
|
import Wrap from '@/components/wrap'
|
|
import Purchase from '@/components/composites/purchase'
|
|
|
|
export type ProductPageProps = {}
|
|
|
|
export default function ProductPage(props: ProductPageProps) {
|
|
return (
|
|
<main className={`mt-20`}>
|
|
<Wrap className="flex flex-col py-8 gap-4">
|
|
<BreadCrumb items={[
|
|
{label: '产品中心', href: '/product'},
|
|
]}/>
|
|
<Purchase/>
|
|
</Wrap>
|
|
</main>
|
|
)
|
|
}
|
|
|