mirror of
https://github.com/vercel/commerce.git
synced 2025-07-19 02:41:21 +00:00
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
|
|
import { Layout } from 'src/components/common'
|
|
import { ProductInfoDetail } from 'src/components/modules/product-detail'
|
|
|
|
export default function Slug() {
|
|
return <>
|
|
<ProductInfoDetail/>
|
|
</>
|
|
}
|
|
|
|
Slug.Layout = Layout
|