Tomee
Tomee

Reputation: 139

'Link' is declared but its value is never read / React.js

i am trying to make my first project on React, but i am facing some issues with it. My imported react-router-dom libraries are not being used on LINK. I do get an error: 'Link' is declared but its value is never read. Thank you in advance!

import React, {useState} from 'react';
import { Link } from 'react-router-dom';

function Navbar() {
    return (
        <>
            <nav className="navbar">
                <div className="navbar-container">
                    <LINK to="/" className="navbar-logo">
                        //TRVL <i className='fab fa-typo3'/>
                    </LINK>
                </div>
            </nav>
        </>
    )
}

export default Navbar

Upvotes: 0

Views: 378

Answers (1)

Aarni Joensuu
Aarni Joensuu

Reputation: 741

The error occurs because you are declaring Link in the import statement and then trying to use LINK in code. Link != LINK, the case should match.

Upvotes: 2

Related Questions