Skip to content

Commit

Permalink
chore: testing hacktoberfest
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas.silveira authored and lucaxsilveira committed Oct 7, 2024
1 parent 1fde26a commit dbcae04
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ const Dropdown = ({ items = [], selected, onChange }) => {
const isEmpty = items.length === 0;
const selectedItem = items.filter(item => item.key === selected)[0];

console.log("wip");

const toggleDropdown = () => setIsOpen(isOpen => !isOpen);

const handleDocumentClick = event => {
Expand Down

0 comments on commit dbcae04

Please sign in to comment.