diff --git a/src/containers/Search/components/SearchResult.tsx b/src/containers/Search/components/SearchResult.tsx
new file mode 100644
index 0000000..5e142dc
--- /dev/null
+++ b/src/containers/Search/components/SearchResult.tsx
@@ -0,0 +1,9 @@
+import { FC } from "react";
+import { CardEntry } from "../../../components/CardEntry";
+import { MealSummary } from "../../../types/meal";
+
+type Props = {
+ meal: MealSummary;
+};
+
+export const SearchResult: FC
= ({ meal }) => ;
diff --git a/src/containers/Search/index.tsx b/src/containers/Search/index.tsx
new file mode 100644
index 0000000..181e596
--- /dev/null
+++ b/src/containers/Search/index.tsx
@@ -0,0 +1,12 @@
+import { FC } from "react";
+import { MealSummary } from "../../types/meal";
+import { SearchPage } from "./components/SearchPage";
+
+type Props = {
+ searchString: string;
+ searchResults: { meals: MealSummary[] };
+};
+
+export const Search: FC = ({ searchString, searchResults }) => (
+
+);
diff --git a/src/containers/SearchController.tsx b/src/containers/SearchController.tsx
deleted file mode 100644
index 5565eb5..0000000
--- a/src/containers/SearchController.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import React from "react";
-import { SearchPage } from "../pages/SearchPage";
-
-export const SearchController = ({ searchString, searchResults }) => {
- if (searchResults === null) {
- searchResults = { meals: [] };
- }
-
- return (
-
- );
-};
diff --git a/src/router/AppRouter.tsx b/src/router/AppRouter.tsx
index 84ebe8d..4c88f59 100644
--- a/src/router/AppRouter.tsx
+++ b/src/router/AppRouter.tsx
@@ -4,8 +4,8 @@ import { Categories } from "../containers/Categories";
import { Category } from "../containers/Category";
import { Home } from "../containers/Home";
import { Meal } from "../containers/Meal";
-import { ProfileController } from "../containers/ProfileController";
-import { SearchController } from "../containers/SearchController";
+import { Profile } from "../containers/Profile";
+import { Search } from "../containers/Search";
import { ContactPage } from "../pages/Contact";
import { NotFoundPage } from "../pages/NotFoundPage";
import { PrivateRoute } from "./PrivateRoute";
@@ -18,7 +18,7 @@ const AppRouter = ({ getRandomMeal, searchString, searchResults }) => (
-
+
@@ -33,10 +33,7 @@ const AppRouter = ({ getRandomMeal, searchString, searchResults }) => (
-
+