import React from "react"; import {latest} from "@maplibre/maplibre-gl-style-spec"; import Block from "./Block"; import InputAutocomplete from "./InputAutocomplete"; import { type WithTranslation, withTranslation } from "react-i18next"; type FieldSourceLayerInternalProps = { value?: string onChange?(...args: unknown[]): unknown sourceLayerIds?: unknown[] error?: {message: string} } & WithTranslation; const FieldSourceLayerInternal: React.FC = ({ onChange = () => {}, sourceLayerIds = [], value, error, t }) => { return ( [l, l])} /> ); }; const FieldSourceLayer = withTranslation()(FieldSourceLayerInternal); export default FieldSourceLayer;