mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
9 lines
233 B
TypeScript
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>
|
|
}
|