import React, { Component } from 'react'; import Nav from 'react-bootstrap/Nav'; export default class Tabs extends Component { render() { const tabs = this.props.functions.map((func) => { return ( {func} ) }) return ( ); } }