multiple path name for same navlink

JavaScript
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>
    );
};
Source

Also in JavaScript: