import React, { Component } from 'react' import PropTypes from 'prop-types' import '../stylesheets/globals.scss' import styles from './Navbar.scss' export default class Navbar extends Component { static propTypes = { config: PropTypes.object.isRequired } render () { let key = 0 const objKeys = Object.keys(this.props.config.social) const socialLinks = objKeys.map((val) => { const link = ( {val} ) key += 1 return link }) socialLinks.push( e-mail ) return (
) } }