import React from "react"; import latest from "@maplibre/maplibre-gl-style-spec/dist/latest.json"; import Block from "./Block"; import InputAutocomplete from "./InputAutocomplete"; import { type WithTranslation, withTranslation } from "react-i18next"; type FieldSourceInternalProps = { value?: string wdKey?: string onChange?(value: string| undefined): unknown sourceIds?: unknown[] error?: {message: string} } & WithTranslation; const FieldSourceInternal: React.FC = ({ onChange = () => {}, sourceIds = [], wdKey, value, error, t }) => { return ( [src, src])} /> ); }; const FieldSource = withTranslation()(FieldSourceInternal); export default FieldSource;