fix undefined functions

it renders!
This commit is contained in:
Berkeley Martinez
2015-07-03 17:46:58 -07:00
parent bb37583c90
commit f159d68fc5
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
import React, { PropTypes } from 'react';
import Nav from './components/Nav';
import Footer from './components/Footer';
import { Nav } from './components/Nav';
import { Footer } from './components/Footer';
export default class extends React.Component {
constructor(props) {

View File

@ -46,7 +46,7 @@ export default class extends React.Component {
render() {
return (
<Navbar
brand={ this._renderBrand() }
brand={ this.renderBrand() }
className='nav-height'
fixedTop={ true }
toggleNavKey={ 0 }>
@ -69,7 +69,7 @@ export default class extends React.Component {
href='/bonfires'>
Bonfires
</NavItem>
{ this._renderSignin() }
{ this.renderSignin() }
</Nav>
</Navbar>
);