import React, { Component } from 'react';
import { Navbar, NavDropdown, Nav } from 'react-bootstrap';
import PropTypes from 'prop-types';
export default class NavigationBar extends Component {
state = {
isOpen: false
};
toggleCollapse() {
this.setState({ isOpen: !this.state.isOpen });
}
render() {
return(
Aki Dashboard
}
id="basic=nav-dropdown">
{`Logout (${this.props.user.username})`}
//
//
// Bot Dashboard
//
//
//
//
//
// Server Selection
//
//
//
//
//
//
//
//
//
// {`Logout (${this.props.user.username})`}
//
//
//
//
//
//
);
}
}
NavigationBar.propTypes = {
user: PropTypes.object
}