import React from 'react' import PropTypes from 'prop-types' import './contact4.css' const Contact4 = (props) => { return (
{props.content2}

{props.heading1}

{props.content1}

Email

{props.email1}

Phone

{props.phone1}

Office

{props.address1}
) } Contact4.defaultProps = { email1: '22kaen1bdi@hft-stuttgart.de', content2: 'Get in touch with us today!', address1: 'Schellingstraße 24, 70174 Stuttgart, Germany', heading1: 'Contact Us', content1: 'Contact our dear founder directly!', phone1: '+123-456-7890', } Contact4.propTypes = { email1: PropTypes.string, content2: PropTypes.string, address1: PropTypes.string, heading1: PropTypes.string, content1: PropTypes.string, phone1: PropTypes.string, } export default Contact4