From af3198b47bab702d94520e315a261f2fed38a2f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20J=C3=BAnior?= Date: Sat, 11 May 2024 15:23:11 -0300 Subject: [PATCH] docs(examples): add ControlPanel to marker-clustering example (#363) --- examples/marker-clustering/src/app.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/marker-clustering/src/app.tsx b/examples/marker-clustering/src/app.tsx index 4b11cf5..ee6c02a 100644 --- a/examples/marker-clustering/src/app.tsx +++ b/examples/marker-clustering/src/app.tsx @@ -10,6 +10,7 @@ import { import {MarkerClusterer} from '@googlemaps/markerclusterer'; import type {Marker} from '@googlemaps/markerclusterer'; import trees from './trees'; +import ControlPanel from './control-panel'; const API_KEY = globalThis.GOOGLE_MAPS_API_KEY ?? (process.env.GOOGLE_MAPS_API_KEY as string); @@ -24,6 +25,7 @@ const App = () => ( disableDefaultUI> + );