is it possible to render an element for all paths except one?
For example:
<Link to='/a'>A</Link>
<Link to='/b'>B</Link>
<Link to='/c'>C</Link>
...
<Link to='/noRender'>No Render</Link>
...
<Link to='/z'>Z</Link>
<Route path='all expect /noRender' render={()=> (<p>rendered element</p>)} />
Im looking for simplest/best solution.