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}
{props.email2}

Phone

{props.phone1}
window.open("https://www.google.com/maps/place//data=!4m2!3m1!1s0x4799db371328f901:0x6946c5ec40a9542?sa=X&ved=1t:8290&ictx=111", "_blank")}>

Office

{props.address1}
) } Contact4.defaultProps = { email1: '22kaen1bdi@hft-stuttgart.de', email2: '22wela1bdi@hft-stuttgart.de', content2: 'Get in touch with us today!', address1: 'Schellingstraße 24, 70174 Stuttgart, Germany', heading1: 'Contact Us', content1: 'Contact our dear Founders 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