mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
|
|
import { useMap } from 'react-leaflet'
|
|
|
|
export const setItemLocation = () => {
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
const map = useMap()
|
|
|
|
return <div></div>
|
|
}
|