removed header: removed depreciated dropdownmenu.js

This commit is contained in:
darkicewolf50 2024-03-26 22:34:52 -06:00
parent 58f2ad739c
commit 21f535a63a

View File

@ -1,25 +0,0 @@
import OpenPageButton from "./OpenPageButton";
/**
* @param {null} null - Takes in nothing
* @returns {JSX.Element} JSX - HTML tags and JS functionality
* @description Drop down menu elements
* @author Brock <darkicewolf50@gmail.com>
* @todo chang to proper drop down menu, convert to using <Link>
*/
const DropdownMenu = () => {
return (
<div>
<OpenPageButton
pageToGoTo={"/JoinTheClub"}
textOnButton={"Join the Club"}
/>
<OpenPageButton
pageToGoTo={"/UpcomingEvents"}
textOnButton={"Upcoming Events"}
/>
</div>
);
};
export default DropdownMenu;