i'm using meteor react-packages and i have the appbar displayed properly, but i can't get the nav toggle to work. i'm using code straight out of examples and i even read the code in the material-ui repo and it's seems like it should be working. what am i doing wrong?
let {AppBar, LeftNav} = mui
AppLayout = React.createClass({
menuItems: [
{route: '/profile/bio', text: 'bio'},
{route: '/profile/photos', text: 'photos'},
{route: '/profile/videos', text: 'videos'},
{route: '/profile/filmography', text: 'filmography'},
{route: '/profile/settings', text: 'settings'},
{route: '/profile/accounts', text: 'accounts'}
],
_toggle(e){
e.preventDefault()
this.refs.leftNav.toggle()
},
render(){
return (
<div>
<AppBar onLeftIconButtonTouchTap={this._toggle} title='react+meteor' />
<LeftNav ref="leftNav" docked={false} menuItems={this.menuItems} />
<AppView />
</div>
)
}
})