From 17df800f200cfe54d0f44604a375d6fd744737a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=B5=E1=84=90=E1=85=A2=E1=84=92=E1=85=AE?= =?UTF-8?q?=E1=86=AB?= Date: Thu, 24 Oct 2024 21:09:49 +0900 Subject: [PATCH] =?UTF-8?q?style:=20lint=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/pages/MainPage/MainPage.tsx | 8 +++++--- .../pages/MainPage/Section/MainSection/MainSection.tsx | 3 ++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/client/src/pages/MainPage/MainPage.tsx b/client/src/pages/MainPage/MainPage.tsx index 1ffad0af..87c4ed34 100644 --- a/client/src/pages/MainPage/MainPage.tsx +++ b/client/src/pages/MainPage/MainPage.tsx @@ -1,4 +1,9 @@ +import Image from '@components/Design/components/Image/Image'; + import useAmplitude from '@hooks/useAmplitude'; +import usePageBackground from '@hooks/usePageBackground'; + +import getImageUrl from '@utils/getImageUrl'; import Nav from './Nav/Nav'; import {MainSection} from './Section/MainSection'; @@ -6,9 +11,6 @@ import {DescriptionSection} from './Section/DescriptionSection'; import {FeatureSection} from './Section/FeatureSection'; import {backgroundImageStyle, backgroundStyle, mainContainer} from './MainPage.style'; import CreatorSection from './Section/CreatorSection/CreatorSection'; -import getImageUrl from '@utils/getImageUrl'; -import Image from '@components/Design/components/Image/Image'; -import usePageBackground from '@hooks/usePageBackground'; const MainPage = () => { const {trackStartCreateEvent} = useAmplitude(); diff --git a/client/src/pages/MainPage/Section/MainSection/MainSection.tsx b/client/src/pages/MainPage/Section/MainSection/MainSection.tsx index 610bf590..ed4e7619 100644 --- a/client/src/pages/MainPage/Section/MainSection/MainSection.tsx +++ b/client/src/pages/MainPage/Section/MainSection/MainSection.tsx @@ -1,10 +1,11 @@ import Button from '@HDesign/components/Button/Button'; import Text from '@HDesign/components/Text/Text'; +import useMainSection from '@hooks/useMainSection'; + import {Icon} from '@components/Design'; import {animateWithDelay, chevronStyle, mainSectionStyle, sectionStyle} from './MainSection.style'; -import useMainSection from '@hooks/useMainSection'; type MainSectionProps = { trackStartCreateEvent: () => void;