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