Loading src/components/container/App.jsx +2 −2 Original line number Diff line number Diff line import React, { useEffect, useState } from "react"; import UsgsHeader from "../presentational/UsgsHeader.jsx"; import UsgsFooter from "../presentational/UsgsFooter.jsx"; import MenuBar from "../presentational/MenuBar.jsx"; import Menubar from "../presentational/Menubar.jsx"; import GeoStacApp from "./GeoStacApp.jsx"; import SplashScreen from "../presentational/SplashScreen.jsx"; Loading Loading @@ -245,7 +245,7 @@ export default function App() { return ( <> <UsgsHeader visible={showHeaderFooter}/> <MenuBar <Menubar showHeaderFooter={showHeaderFooter} handleOpenCloseHeader={handleOpenCloseHeader} /> Loading src/components/presentational/Menubar.jsx +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ import DialogContent from "@mui/material/DialogContent"; import DialogContentText from "@mui/material/DialogContentText"; import DialogTitle from "@mui/material/DialogTitle"; export default function MenuBar(props) { export default function Menubar(props) { const [showAbout, setShowAbout] = React.useState(false); const handleOpenAbout = () => { Loading Loading
src/components/container/App.jsx +2 −2 Original line number Diff line number Diff line import React, { useEffect, useState } from "react"; import UsgsHeader from "../presentational/UsgsHeader.jsx"; import UsgsFooter from "../presentational/UsgsFooter.jsx"; import MenuBar from "../presentational/MenuBar.jsx"; import Menubar from "../presentational/Menubar.jsx"; import GeoStacApp from "./GeoStacApp.jsx"; import SplashScreen from "../presentational/SplashScreen.jsx"; Loading Loading @@ -245,7 +245,7 @@ export default function App() { return ( <> <UsgsHeader visible={showHeaderFooter}/> <MenuBar <Menubar showHeaderFooter={showHeaderFooter} handleOpenCloseHeader={handleOpenCloseHeader} /> Loading
src/components/presentational/Menubar.jsx +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ import DialogContent from "@mui/material/DialogContent"; import DialogContentText from "@mui/material/DialogContentText"; import DialogTitle from "@mui/material/DialogTitle"; export default function MenuBar(props) { export default function Menubar(props) { const [showAbout, setShowAbout] = React.useState(false); const handleOpenAbout = () => { Loading