From 7271c71f118b001f2c35de1b7535a60beccf08cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Mon, 4 Jan 2021 20:11:25 +0900 Subject: [PATCH] feat: added Navbar component --- components/Navbar.tsx | 76 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 components/Navbar.tsx diff --git a/components/Navbar.tsx b/components/Navbar.tsx new file mode 100644 index 0000000..d7e3501 --- /dev/null +++ b/components/Navbar.tsx @@ -0,0 +1,76 @@ +import Link from 'next/link' +import { useState } from 'react' + +const Navbar = (): JSX.Element => { + const [navbarOpen, setNavbarOpen] = useState(false) + return ( + <> + + + ) +} + +export default Navbar