如何在img单击上重定向到另一个组件(材料UI)

I am using material UI for React and I want to redirect to another component (Dashboard) on image click : the click event is on an image (<img/>), here's what i have tried but it's not working:

           <Switch>
            <img src={cap1} alt="cap1"  className="img-avatar" style={{width:"100px"}} />
            <Route path="/app/dashboard" component={Dashboard} />                   
           </Switch>        

谢谢 !

编辑:第二次尝试不起作用。

<Switch>
     <Route path="/images/Capture.JPG" />
      <Route path="/app/dashboard" component={Dashboard} />            
</Switch>
<img src={cap1} onClick={()=>{ props.history.push("/app/dashboard") }} />