🎨 styles: component recipe detail

:%s
This commit is contained in:
lytrankieio123
2021-09-01 16:04:07 +07:00
parent a7d0eb051c
commit 6169634dca
13 changed files with 224 additions and 3 deletions

13
pages/demo.tsx Normal file
View File

@@ -0,0 +1,13 @@
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