Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // src/screens/home/components/Info.js
  2.  
  3. const Info = ({query, totalItems}) = {
  4. return (
  5. <>
  6. <h3>Search results for: {query}</h3>
  7. <p>Total results: {totalItems}</p>
  8. <>
  9. }
  10. }
  11. export default Info;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement