diff --git a/ui/src/Components/NavBar/index.js b/ui/src/Components/NavBar/index.js index 3f5a37f43..c72b96b01 100644 --- a/ui/src/Components/NavBar/index.js +++ b/ui/src/Components/NavBar/index.js @@ -5,7 +5,9 @@ import { observer } from "mobx-react"; import ReactResizeDetector from "react-resize-detector"; -import TODO from "TODO"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faCog } from "@fortawesome/free-solid-svg-icons/faCog"; + import { AlertStore } from "Stores/AlertStore"; import { FetchIndicator } from "./FetchIndicator"; import { FilterInput } from "./FilterInput"; @@ -33,7 +35,18 @@ const NavBar = observer( - + ); diff --git a/ui/src/TODO.js b/ui/src/TODO.js deleted file mode 100644 index fe83cc4cf..000000000 --- a/ui/src/TODO.js +++ /dev/null @@ -1,15 +0,0 @@ -import React, { PureComponent } from "react"; -import PropTypes from "prop-types"; - -export default class TODO extends PureComponent { - static propTypes = { - name: PropTypes.string - }; - - render() { - //console.warn("TODO"); - return ( -
{this.props.name || "TODO"}
- ); - } -}