From bf2a2c08320e2dac012c36033d6e909f53f2375e Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 24 Aug 2021 15:49:18 +0700 Subject: [PATCH] remove: remove props interface never use --- src/components/common/Logo/Logo.tsx | 3 +-- src/components/common/ViewAllItem/ViewAllItem.tsx | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/common/Logo/Logo.tsx b/src/components/common/Logo/Logo.tsx index 5b82f2837..06f9d57f3 100644 --- a/src/components/common/Logo/Logo.tsx +++ b/src/components/common/Logo/Logo.tsx @@ -1,8 +1,7 @@ import s from './Logo.module.scss' interface Props { - className?: string - children?: any + } const Logo = ({}: Props) => { diff --git a/src/components/common/ViewAllItem/ViewAllItem.tsx b/src/components/common/ViewAllItem/ViewAllItem.tsx index e85b6181b..b9d4e4efe 100644 --- a/src/components/common/ViewAllItem/ViewAllItem.tsx +++ b/src/components/common/ViewAllItem/ViewAllItem.tsx @@ -3,8 +3,6 @@ import s from './ViewAllItem.module.scss' import Link from 'next/link' interface Props { - className?: string - children?: any link?: string }