tleunen / react-mdl

React Components for Material Design Lite
https://tleunen.github.io/react-mdl/
MIT License
1.76k stars 255 forks source link

Header Title clickable? #403

Closed wrick17 closed 7 years ago

wrick17 commented 7 years ago

Can we add a property to both Header and Drawer which we can use to handle the click on the title of the drawer or header?

tleunen commented 7 years ago

The title in Header can receive an element instead of a string, so you can pass a link.

<Header title={<a href="/go">Title</a>}>{...}</Header>

The drawer also supports this.

wrick17 commented 7 years ago

Thanks.