import React from 'react'; import {Field} from 'redux-form/immutable'; import contempo from 'contempo'; import {NumberField} from 'ponere'; @contempo(require('./vector.scss')) export default class Vector extends React.Component { static defaultProps = { max: [99999, 99999], min: [0, 0], xLabel: '', yLabel: '', separatorLabel: 'x', } render() { return
{this.props.label && }

{this.props.xLabel}

{this.props.separatorLabel}

{this.props.yLabel}

; } }