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