how to give multiple paths in to of react nav link code example

Example 1: 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>
    );
};

Example 2: 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>

Example 3: multiple path names for a same component in react router

<Route path={"/home" | "/users" | "/widgets"} component={Home} />

Tags:

Misc Example