Files
commerce/pages/recipes.tsx
2021-09-08 23:50:47 +07:00

16 lines
380 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 Recipes() {
return (
<>
<RecipeListBanner />
<RecipesList/>
</>
)
}
Recipes.Layout = Layout