/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/no-unsafe-return */ import { PopupStartEndInput } from '#components/Map' import type { Item } from '#types/Item' export const ProfileStartEndForm = ({ item, setState, }: { item: Item setState: React.Dispatch> }) => { return ( setState((prevState) => ({ ...prevState, end: e, })) } updateStartValue={(s) => setState((prevState) => ({ ...prevState, start: s, })) } > ) }