import React, { Component } from 'react' export default class SelectedVariable extends Component { render() { let { variable: { name, first: { description }, tags }, selectedTags } = this.props return (

{name}

{description}

) } }