added heaer: todos and where to find help

This commit is contained in:
darkicewolf50 2024-03-26 13:53:52 -06:00
parent 1a7f6b8bc9
commit 10fc1f535b
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import OpenPageButton from "./OpenPageButton";
* @returns {JSX.Element} JSX - HTML tags and JS functionality * @returns {JSX.Element} JSX - HTML tags and JS functionality
* @description Drop down menu elements * @description Drop down menu elements
* @author Brock <darkicewolf50@gmail.com> * @author Brock <darkicewolf50@gmail.com>
* @todo chang to proper drop down menu, convert to using <Link>
*/ */
const DropdownMenu = () => { const DropdownMenu = () => {
return ( return (

View File

@ -10,6 +10,7 @@ import "./Header.css";
* @returns {JSX.Element} JSX - HTML tags and JS functionality * @returns {JSX.Element} JSX - HTML tags and JS functionality
* @description The top header part of the page includes the naviagtion * @description The top header part of the page includes the naviagtion
* @author Brock <darkicewolf50@gmail.com> * @author Brock <darkicewolf50@gmail.com>
* @todo convert any dropdowns and use <Link> just like <a> https://github.com/Akshpreet02/EventSphere
*/ */
const Header = () => { const Header = () => {
const [isDropdownVisible, setDropdownVisible] = useState(false); const [isDropdownVisible, setDropdownVisible] = useState(false);