import React from "react"; import latest from "@maplibre/maplibre-gl-style-spec/dist/latest.json"; import { Block } from "./Block"; import { InputNumber } from "./InputNumber"; import { type WithTranslation, withTranslation } from "react-i18next"; type FieldMaxZoomInternalProps = { value?: number onChange(value: number | undefined): unknown error?: {message: string} } & WithTranslation; const FieldMaxZoomInternal: React.FC = (props) => { const t = props.t; return ( ); }; export const FieldMaxZoom = withTranslation()(FieldMaxZoomInternal);