mirror of
https://github.com/vercel/commerce.git
synced 2025-07-21 11:51:20 +00:00
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
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 RecipeListPage() {
|
|
return (
|
|
<>
|
|
<RecipeListBanner />
|
|
<RecipesList/>
|
|
</>
|
|
)
|
|
}
|
|
|
|
RecipeListPage.Layout = Layout
|