From a70f55e3740271a045993c158f5f48fec187823a Mon Sep 17 00:00:00 2001 From: wearrrrr Date: Sun, 14 Jan 2024 14:05:38 -0600 Subject: [PATCH] Make the dropdown MUCH more stable, and Dropdown more generic. --- src/components/Dropdown.astro | 6 ++-- src/components/TabList.astro | 63 +++++++++++++++++++---------------- 2 files changed, 38 insertions(+), 31 deletions(-) diff --git a/src/components/Dropdown.astro b/src/components/Dropdown.astro index 4867327..f717543 100644 --- a/src/components/Dropdown.astro +++ b/src/components/Dropdown.astro @@ -1,14 +1,14 @@ --- // TODO: Add Props to make this component more dynamic!! -const { buttonNameDefault, dropdownList } = Astro.props; +const { buttonNameDefault, dropdownList, id } = Astro.props; ---