Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created September 23, 2021 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techomoro/d1dd65930e292b50ffad8b858f10f91a to your computer and use it in GitHub Desktop.
Save techomoro/d1dd65930e292b50ffad8b858f10f91a to your computer and use it in GitHub Desktop.
import React from "react";
function DropdownList() {
return (
<div class="dropdown-menu profile-menu">
<a class="dropdown-item" href="#">
Profile
</a>
<a class="dropdown-item" href="#">
Account
</a>
<a class="dropdown-item" href="#">
Settings
</a>
</div>
);
}
export default DropdownList;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment