import React from 'react' import PropTypes from 'prop-types' import './navbar4.css' const Navbar4 = (props) => { return (
{props.logoAlt}
{props.logoAlt}
) } Navbar4.defaultProps = { link5: 'Link5', link4: 'Link4', link3: 'Contact', link2: 'About', link1: 'Home', logoAlt: 'Weather App', logoSrc: 'https://aheioqhobo.cloudimg.io/v7/_playground-bucket-v2.teleporthq.io_/84ec08e8-34e9-42c7-9445-d2806d156403/fac575ac-7a41-484f-b7ac-875042de11f8?org_if_sml=1&force_format=original', action2: '/about', action1: '/', imageSrc: '23887698-7562-4cff-bf5f-d07a1767f79b', imageAlt: 'image', imageSrc1: '23887698-7562-4cff-bf5f-d07a1767f79b', imageAlt1: 'image', image1Src: 'https://aheioqhobo.cloudimg.io/v7/_playground-bucket-v2.teleporthq.io_/84ec08e8-34e9-42c7-9445-d2806d156403/fac575ac-7a41-484f-b7ac-875042de11f8?org_if_sml=1&force_format=original', rootClassName: '', } Navbar4.propTypes = { link5: PropTypes.string, link4: PropTypes.string, link3: PropTypes.string, link2: PropTypes.string, link1: PropTypes.string, logoAlt: PropTypes.string, logoSrc: PropTypes.string, action2: PropTypes.string, action1: PropTypes.string, imageSrc: PropTypes.string, imageAlt: PropTypes.string, imageSrc1: PropTypes.string, imageAlt1: PropTypes.string, image1Src: PropTypes.string, rootClassName: PropTypes.string, } export default Navbar4