import React from 'react'; import { Form, Row, Col } from "react-bootstrap"; import PropTypes from 'prop-types'; import {gasTypes} from "../config"; const GasTypes = (props) => { const { selectGasType, selectedGasType, } = props; return ( {gasTypes.map(gasType => ())} ); } GasTypes.propTypes = { selectedGasType: PropTypes.string.isRequired, selectGasType: PropTypes.func.isRequired, }; export default GasTypes;