From a83af72af613014a84c99b92db016975493f4fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Mon, 30 Dec 2024 16:49:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9Tab=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E7=9A=84=E6=A0=B7=E5=BC=8F=E6=96=87=E4=BB=B6=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/{Tabs.module.css => Tab.module.css} | 0 src/components/Tab.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/components/{Tabs.module.css => Tab.module.css} (100%) diff --git a/src/components/Tabs.module.css b/src/components/Tab.module.css similarity index 100% rename from src/components/Tabs.module.css rename to src/components/Tab.module.css diff --git a/src/components/Tab.tsx b/src/components/Tab.tsx index 572a580..4d3de64 100644 --- a/src/components/Tab.tsx +++ b/src/components/Tab.tsx @@ -1,7 +1,7 @@ import cx from 'clsx'; import { isEqual } from 'lodash-es'; import { useCallback, useState } from 'react'; -import styles from './Tabs.module.css'; +import styles from './Tab.module.css'; type TabProps = { tabs: { title: string; id: unknown }[];