+ {/*When there are results to show*/}
+ {searchQuery && results.length > 0 &&
+ results.map((result) => ())}
+
+ {/*when user searched for something and there were no results*/}
+ {emptyResult && }
+
+ {/*default state, when user didn't search for anything. This is the initial screen*/}
+ {!emptyResult && !searchQuery && }
+