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 }[];