utopia-ui/lib/src/Components/Item/PopupForm.tsx

9 lines
233 B
TypeScript

import { ItemFormPopup } from '#components/Map/Subcomponents/ItemFormPopup'
/**
* @category Item
*/
export const PopupForm = ({ children }: { children?: React.ReactNode }) => {
return <ItemFormPopup>{children}</ItemFormPopup>
}