mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
refactor: Refactor RecipeListPage
This commit is contained in:
15
pages/recipes.tsx
Normal file
15
pages/recipes.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Layout } from 'src/components/common';
|
||||
import RecipeListBanner from 'src/components/modules/recipes-list/RecipeListBanner/RecipeListBanner';
|
||||
import RecipesList from 'src/components/modules/recipes-list/RecipesList/RecipesList';
|
||||
|
||||
|
||||
export default function Recipes() {
|
||||
return (
|
||||
<>
|
||||
<RecipeListBanner />
|
||||
<RecipesList/>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
Recipes.Layout = Layout
|
Reference in New Issue
Block a user