import React from 'react'; import { Subscriber } from 'react-broadcast'; import styled from 'styled-components'; import remcalc from 'remcalc'; import Label from '../label'; const StyledLabel = Label.extend` margin-right: ${remcalc(12)}; `; export default props => { const render = value => { const { id = '' } = value || {}; return ; }; return ( {render} ); };