Question: Why should you use React Router's Link component instead of a basic `` tag in React?
- The link component allows the user to use the browser's `Back` button.
- There is no difference--the `Link` component is just another name for the `` tag.
- The `` tag will cause an error when used in React.
- The `` tag triggers a full page reload, while the `Link` component does not.
Answer: The correct answer of the above question is Option D:The `` tag triggers a full page reload, while the `Link` component does not.