import React from 'react' import Block from './Block' import InputString from './InputString' type FieldCommentProps = { value?: string onChange(value: string | undefined): unknown error: {message: string} }; export default class FieldComment extends React.Component { render() { const fieldSpec = { doc: "Comments for the current layer. This is non-standard and not in the spec." }; return } }