Answers for "give multiple path names in to react navlink react router dom"

0

multiple path name for same navlink

import React from 'react';
import { useLocation } from 'react-router-dom';

// Active the Link on two URLs

export default () => {
	
    // extract pathname from location
    const { pathname } = useLocation();

	return (
    	<li className='Navigation__list-item'> 
        	<NavLink 
            	to="/events" 
                isActive={() => ['/events', '/myevents'].includes(pathname)} >
                Events 
            </NavLink> 
        </li>
    );
};
Posted by: Guest on June-06-2020
0

multiple path names for a same component in react router

<Router>
    {["/home", "/users", "/widgets"].map((path, index) => 
        <Route path={path} component={Home} key={index} />
    )}
</Router>
Posted by: Guest on June-06-2020

Code answers related to "give multiple path names in to react navlink react router dom"

Browse Popular Code Answers by Language