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