From bbd7cb34f493bf36e5135a55c15ea680f277c6a5 Mon Sep 17 00:00:00 2001 From: AykutSarac Date: Wed, 30 Mar 2022 23:17:35 +0300 Subject: [PATCH] remove unused interface --- src/components/Navbar/index.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index cf9de7e..2ed9968 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -2,10 +2,6 @@ import React from "react"; import Link from "next/link"; import styled from "styled-components"; -interface NavbarProps { - isWide?: boolean; -} - const StyledNavbar = styled.div` display: flex; justify-content: space-between; @@ -40,7 +36,7 @@ const StyledTitleWrapper = styled.span` color: ${({ theme }) => theme.ORANGE}; `; -export const Navbar: React.FC = () => { +export const Navbar: React.FC = () => { return (