import React from 'react'; import { Navbar, Button } from "react-bootstrap"; import PropTypes from 'prop-types'; import GasTypes from "./GasTypes"; const Footer = (props) => { const { selectGasType, selectedGasType, setNeedUpdateUserLocation, } = props; return ( ); }; Footer.propTypes = { selectedGasType: PropTypes.string.isRequired, selectGasType: PropTypes.func.isRequired, setNeedUpdateUserLocation: PropTypes.func.isRequired, }; export default Footer;