From a6860b391476f483903cb89f1bc663bf91275190 Mon Sep 17 00:00:00 2001 From: enstef <34582876+enstef@users.noreply.github.com> Date: Sun, 3 Dec 2023 20:23:06 +0100 Subject: [PATCH] test --- src/components/Aim.tsx | 2 +- src/components/Category.tsx | 2 +- src/components/Quote.tsx | 2 +- src/components/{Quote.module.scss => quote.module.scss} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/components/{Quote.module.scss => quote.module.scss} (100%) diff --git a/src/components/Aim.tsx b/src/components/Aim.tsx index 0a60a88..c3cd385 100644 --- a/src/components/Aim.tsx +++ b/src/components/Aim.tsx @@ -1,5 +1,5 @@ import { Dispatch, SetStateAction } from 'react'; -import styles from '@/components/Aim.module.scss'; +import styles from '@/components/aim.module.scss'; import classnames from 'classnames'; interface Props { diff --git a/src/components/Category.tsx b/src/components/Category.tsx index 7dfead5..2c9b399 100644 --- a/src/components/Category.tsx +++ b/src/components/Category.tsx @@ -1,5 +1,5 @@ import { Dispatch, SetStateAction } from 'react'; -import styles from '@/components/Category.module.scss'; +import styles from '@/components/category.module.scss'; interface Props { label: string; diff --git a/src/components/Quote.tsx b/src/components/Quote.tsx index bfe4e8b..98d1c3a 100644 --- a/src/components/Quote.tsx +++ b/src/components/Quote.tsx @@ -1,5 +1,5 @@ import Close from '@/assets/icons/Close'; -import styles from '@/components/Quote.module.scss'; +import styles from '@/components/quote.module.scss'; interface Props { title?: string; diff --git a/src/components/Quote.module.scss b/src/components/quote.module.scss similarity index 100% rename from src/components/Quote.module.scss rename to src/components/quote.module.scss