diff --git a/pac-man-board-game/ClientApp/src/components/navMenu.tsx b/pac-man-board-game/ClientApp/src/components/navMenu.tsx index d8aa0dd..d82ece9 100644 --- a/pac-man-board-game/ClientApp/src/components/navMenu.tsx +++ b/pac-man-board-game/ClientApp/src/components/navMenu.tsx @@ -2,28 +2,27 @@ import React, {FC} from "react"; import {Link} from "react-router-dom"; const NavMenu: FC = () => { - - const [collapsed, setCollapsed] = React.useState(true); - - function toggleNavbar() { - setCollapsed(!collapsed); - } - return (
-
); }; export default NavMenu; + +const NavItem: FC = ({to, children, className}) => ( +
  • + {children} +
  • +) diff --git a/pac-man-board-game/ClientApp/src/index.css b/pac-man-board-game/ClientApp/src/index.css index 81b583e..f9523b4 100644 --- a/pac-man-board-game/ClientApp/src/index.css +++ b/pac-man-board-game/ClientApp/src/index.css @@ -19,6 +19,10 @@ h1 { @apply text-4xl; } +h2 { + @apply text-3xl; +} + br { @apply my-2; } diff --git a/pac-man-board-game/ClientApp/src/types/props.d.ts b/pac-man-board-game/ClientApp/src/types/props.d.ts index 175d714..c6fa886 100644 --- a/pac-man-board-game/ClientApp/src/types/props.d.ts +++ b/pac-man-board-game/ClientApp/src/types/props.d.ts @@ -11,6 +11,11 @@ interface ChildProps extends ComponentProps { children?: React.JSX.Element | string, } +interface LinkProps extends ChildProps { + to: string, + newTab?: boolean, +} + interface ButtonProps extends ChildProps { onClick?: (event: React.MouseEvent) => void, disabled?: boolean,