// @flow import React from 'react'; import translate from 'translations'; export default class GasField extends React.Component { props: { value: string, onChange?: (value: string) => void | null }; render() { const { value, onChange } = this.props; const isReadonly = !onChange; return (