fixed naming in NavBarChannelOpitonsDropdown

This commit is contained in:
bill bittner 2018-01-24 15:42:47 -08:00
parent 6d37843c09
commit 0ca0a7222a
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import React from 'react';
function Logo ({ channelName, handleSelection, VIEW, LOGOUT }) {
function NavBarChannelOptionsDropdown ({ channelName, handleSelection, VIEW, LOGOUT }) {
return (
<select type="text" id="nav-bar-channel-select" className="select select--arrow link--nav" onChange={handleSelection}>
<option id="nav-bar-channel-select-channel-option">{channelName}</option>
@ -10,4 +10,4 @@ function Logo ({ channelName, handleSelection, VIEW, LOGOUT }) {
);
};
export default Logo;
export default NavBarChannelOptionsDropdown;

View file

@ -1,7 +1,7 @@
import React from 'react';
import { authenticateUser } from 'utils/auth';
import Logo from 'components/Logo';
import NavBarChannelDropdown from 'components/NavBarChannelDropdown';
import NavBarChannelDropdown from 'components/NavBarChannelOptionsDropdown';
const VIEW = 'VIEW';
const LOGOUT = 'LOGOUT';