Drawing Polygons Map

Hi,

I am trying to map the townships in the Netherlands. I have a dataframe with the polygon coordinates as one of the columns. But how do I show this on a Plotly map?

below the code of the dataframe

import geopandas as gpd
import pandas as pd
import matplotlib.pyplot as plt
import dash_leaflet as dl

#https://www.cbs.nl/nl-nl/onze-diensten/open-data/statline-als-open-data/cartografie

geodata_url = 'https://geodata.nationaalgeoregister.nl/cbsgebiedsindelingen/wfs?request=GetFeature&service=WFS&version=2.0.0&typeName=cbs_gemeente_2017_gegeneraliseerd&outputFormat=json'
gemeentegrenzen = gpd.read_file(geodata_url)
df = pd.DataFrame(gemeentegrenzen)