Skip to content
Snippets Groups Projects
Commit a0f516fd authored by Jacob Cain's avatar Jacob Cain
Browse files

capitalization fix

parent 387ca21e
Branches
Tags
No related merge requests found
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";
......@@ -245,7 +245,7 @@ export default function App() {
return (
<>
<UsgsHeader visible={showHeaderFooter}/>
<MenuBar
<Menubar
showHeaderFooter={showHeaderFooter}
handleOpenCloseHeader={handleOpenCloseHeader}
/>
......
......@@ -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 = () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment