The main server, and probably only repository in this org.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
442 B

5 years ago
  1. import React, {Component} from "react"
  2. import {connect} from "react-redux";
  3. import {Navbar, NavbarBrand} from "reactstrap";
  4. class Header extends Component {
  5. constructor(props) {
  6. super(props);
  7. }
  8. render() {
  9. return (
  10. <Navbar color="dark" expand="md">
  11. <NavbarBrand href="/">Lucifer</NavbarBrand>
  12. </Navbar>
  13. );
  14. }
  15. }
  16. const mapStateToProps = (state) => ({});
  17. export default connect(mapStateToProps)(Header);