import React, { Component } from 'react' import './TextField.css' class TextField extends Component { render = () => { const { id, label, onBlur, inlineLabel } = this.props return (
{ label ? : '' } {!inlineLabel ?
: ''}
) } } export default TextField