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