An entity for react-router-dom to pass router props to components directly under Switch.
import { RouteProps } from 'react-router-dom';
interface IEntrance extends RouteProps {}
export default function Entrance({ location }: IEntrance) {
return <>Current Pathname: {location.pathname}.</>;
}