mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 12:11:22 +00:00
14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import { Layout, RecipeDetail } from 'src/components/common';
|
|
import { ProductInfoDetail } from 'src/components/modules/product-detail'
|
|
|
|
|
|
|
|
export default function Demo() {
|
|
return <>
|
|
<ProductInfoDetail />
|
|
<RecipeDetail />
|
|
</>
|
|
}
|
|
|
|
Demo.Layout = Layout
|