diff --git a/README.md b/README.md index ee6ae25..a75202e 100644 --- a/README.md +++ b/README.md @@ -84,5 +84,7 @@ Free meal planner for cooks short on ideas! (like me …) - put a preloader - route bad request to notFOund (exple: /categories/string, when search results is null) + - Use ErrorBoundaries component ? - add sidenav on mobile - contact form +- override Router with scoll to top function diff --git a/src/App.js b/src/App.js index 1220610..14296d0 100644 --- a/src/App.js +++ b/src/App.js @@ -169,7 +169,6 @@ const App = () => { searchResults={searchResults} /> - diff --git a/src/components/CardEntry.js b/src/components/CardEntry.js index 3fc18c0..cf58434 100644 --- a/src/components/CardEntry.js +++ b/src/components/CardEntry.js @@ -12,7 +12,7 @@ const CardEntry = props => {
{strMeal}
-
+

{strMeal}

diff --git a/src/components/SearchBar.js b/src/components/SearchBar.js index 5ec3f3c..e697a0c 100644 --- a/src/components/SearchBar.js +++ b/src/components/SearchBar.js @@ -4,25 +4,27 @@ import { Link } from "react-router-dom"; const SearchBar = props => { return (
- - - - +
+ + + + +
); };