refactor: Refactor RecipeListPage

This commit is contained in:
quangnhankie
2021-09-08 23:50:47 +07:00
parent 58664e7523
commit d6a0c41e99
14 changed files with 355 additions and 428 deletions

15
pages/recipes.tsx Normal file
View 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