fix: eslint imports order
This commit is contained in:
parent
5ca3fd2613
commit
181198c0cb
@ -1,6 +1,8 @@
|
|||||||
import { IconType } from "react-icons";
|
import { IconType } from "react-icons";
|
||||||
import { MdEco, MdMiscellaneousServices, MdPlace, MdHandshake } from "react-icons/md";
|
import { MdEco, MdMiscellaneousServices, MdPlace, MdHandshake } from "react-icons/md";
|
||||||
|
|
||||||
import { ArrElement } from "../../../lib";
|
import { ArrElement } from "../../../lib";
|
||||||
|
|
||||||
import { BenefitsList } from "./types";
|
import { BenefitsList } from "./types";
|
||||||
|
|
||||||
export const iconsMap: Record<ArrElement<BenefitsList>, IconType> = {
|
export const iconsMap: Record<ArrElement<BenefitsList>, IconType> = {
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
import React, { FC } from 'react';
|
import React, { FC } from 'react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import { Box, Heading, Text, Center, VStack } from '@chakra-ui/react';
|
import { Box, Heading, Text, Center, VStack } from '@chakra-ui/react';
|
||||||
|
|
||||||
import { DemoVideoPosterImg } from '../../../assets/images';
|
import { DemoVideoPosterImg } from '../../../assets/images';
|
||||||
import { CtaButton, SiteLogo, PageSection } from '../';
|
import { CtaButton, SiteLogo, PageSection } from '../';
|
||||||
|
|
||||||
import { HeroSectionProps } from './types';
|
import { HeroSectionProps } from './types';
|
||||||
|
|
||||||
export const HeroSection: FC<HeroSectionProps> = ({
|
export const HeroSection: FC<HeroSectionProps> = ({
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
import React, { FC } from 'react';
|
import React, { FC } from 'react';
|
||||||
import { Container, VStack } from '@chakra-ui/react';
|
import { Container, VStack } from '@chakra-ui/react';
|
||||||
|
|
||||||
import LandingSuccess from '../../../stubs/json/landing/landing-success.json';
|
import LandingSuccess from '../../../stubs/json/landing/landing-success.json';
|
||||||
import { BenefitsSection, Footer, HeroSection, SocialProofSection } from '../../components/landing';
|
import { BenefitsSection, Footer, HeroSection, SocialProofSection } from '../../components/landing';
|
||||||
import { LandingThemeProvider } from '../../containers';
|
import { LandingThemeProvider } from '../../containers';
|
||||||
|
|
||||||
import { isBenefitsSectionData, isSocialProofSectionData } from './types';
|
import { isBenefitsSectionData, isSocialProofSectionData } from './types';
|
||||||
|
|
||||||
const Page: FC = () => {
|
const Page: FC = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user