From 44315f327b7e6d7c32c8860df5414d0d0bab54c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Sun, 31 Jul 2022 22:09:33 +0200 Subject: [PATCH] Add missing `extends` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/Header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Header.tsx b/src/Header.tsx index cde794f8..04715262 100644 --- a/src/Header.tsx +++ b/src/Header.tsx @@ -55,7 +55,7 @@ export function LeftNav({ ); } -interface RightNavProps { +interface RightNavProps extends HTMLAttributes { children?: ReactNode; className?: string; hideMobile?: string;