mirror of
https://github.com/vercel/commerce.git
synced 2025-07-16 09:21:22 +00:00
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
|
|
import { Layout, RecipeDetail } from 'src/components/common'
|
|
import { ProductInfoDetail } from 'src/components/modules/product-detail'
|
|
|
|
export default function Slug() {
|
|
return <>
|
|
<ProductInfoDetail/>
|
|
<RecipeDetail/>
|
|
</>
|
|
}
|
|
|
|
Slug.Layout = Layout
|