-
- {tags.map((tag) => {
- return
{tag}
- })}
-
-
+import { Tag } from "./Tag";
+import { DropdownAction } from "./DropdownAction";
+
+export const TagDropdown = ({ tags }) => {
+ return (
+
+ {tags.map((tag, index) => (
+
+ {tag}
+
- )
-}
\ No newline at end of file
+ ))}
+
+ );
+};