From 30d3e7d9062d06fec320b53e4605518f88b2ea6f Mon Sep 17 00:00:00 2001 From: Surajdoberiyal <66366258+Surajdoberiyal@users.noreply.github.com> Date: Sun, 17 Oct 2021 12:26:24 +0530 Subject: [PATCH] Update Navbar.js This line import is commented out { Link } from 'react-router-dom'; --- src/components/Navbar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Navbar.js b/src/components/Navbar.js index 5cf0a36..3037e53 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -1,6 +1,6 @@ import React from 'react' import PropTypes from 'prop-types' -import { Link } from 'react-router-dom'; +// import { Link } from 'react-router-dom'; export default function Navbar(props) { return ( @@ -37,4 +37,4 @@ Navbar.propTypes = { Navbar.defaultProps = { title: 'Set title here', aboutText: 'About' - }; \ No newline at end of file + };