fix use special navItem for signin button

This commit is contained in:
Berkeley Martinez
2015-07-03 19:34:20 -07:00
parent 6ad1a0af23
commit 9825f55754
2 changed files with 55 additions and 33 deletions

View File

@@ -1,5 +1,6 @@
import React from 'react';
import { Nav, Navbar, NavItem } from 'react-bootstrap';
import FCCNavItem from './NavItem.jsx';
export default class extends React.Component {
constructor(props) {
@@ -33,12 +34,12 @@ export default class extends React.Component {
);
} else {
return (
<NavItem
<FCCNavItem
className='btn signup-btn signup-btn-nav'
eventKey={ 2 }
href='/login'>
Sign In
</NavItem>
</FCCNavItem>
);
}
}