import React from 'react'; export default class Plugins extends React.Component { renderPlugin(plugin) { return ( {plugin.label || plugin.id} ); } render() { const hasPlugins = this.props.plugins && this.props.plugins.length > 0; return (
Plugins: {hasPlugins && this.props.plugins.map((plugin, index) => this.renderPlugin(plugin, index))} {!hasPlugins && n/a}
); } }