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