import React from 'react' import latest from '@maplibre/maplibre-gl-style-spec/dist/latest.json' import Block from './Block' import InputString from './InputString' type FieldIdProps = { value: string wdKey: string onChange(value: string | undefined): unknown error?: {message: string} }; export default class FieldId extends React.Component { render() { return } }