This repository was archived by the owner on Oct 5, 2022. It is now read-only.
File tree 2 files changed +1
-6
lines changed
2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { useHistory, useLocation } from "react-router-dom"
4
4
import { AppBar , Toolbar , Button } from "@material-ui/core"
5
5
import { makeStyles } from "@material-ui/core/styles"
6
6
7
- import InformativeBanner from "../../../components/InformativeBanner"
8
7
import routes from "../../../routes"
9
8
10
9
const navbarHeight = 40
@@ -50,7 +49,6 @@ const Navbar = () => {
50
49
return (
51
50
< React . Fragment >
52
51
< AppBar position = 'fixed' className = { classes . appbar } >
53
- < InformativeBanner />
54
52
< Toolbar className = { classes . toolbar } >
55
53
{ routes . map ( ( { label, path } ) => (
56
54
< Button
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import React from "react"
2
2
import { makeStyles , AppBar } from "@material-ui/core"
3
3
import FabMobile from "./FabMobile"
4
4
import FadeMenu from "./FadeMenu.js"
5
- import InformativeBanner from "../../components/InformativeBanner"
6
5
7
6
const useStyles = makeStyles ( ( ) => ( {
8
7
content : {
@@ -19,9 +18,7 @@ const MobileLayout = ({ children }) => {
19
18
< FadeMenu />
20
19
< FabMobile />
21
20
< div className = { classes . content } >
22
- < AppBar position = 'fixed' className = { classes . appbar } >
23
- < InformativeBanner />
24
- </ AppBar >
21
+ < AppBar position = 'fixed' className = { classes . appbar } > </ AppBar >
25
22
{ children }
26
23
</ div >
27
24
</ React . Fragment >
You can’t perform that action at this time.
0 commit comments