Query Strings
Learn about and implement query strings in the search component of a React application.
We'll cover the following...
Introduction to the query string
The URL is more than just a website’s address. We can use the URL to send data, such as tokens and cookies, across different web pages.This can be achieved with a query string in conjunction with react-router
, which we’ll explore in this lesson.
What is a query string?
The ...