feat: update eslint import order rule (#31)

This commit is contained in:
RustamRu
2024-11-17 13:46:24 +03:00
parent d15d761f1a
commit 1787e94f8e
23 changed files with 402 additions and 22 deletions

View File

@@ -1,4 +1,5 @@
import React, { useState } from 'react';
import LayoutArm from '../../components/LayoutArm';
const Page = () => {

View File

@@ -1,5 +1,6 @@
import React, { FC } from 'react';
import { Container, VStack } from '@chakra-ui/react';
import {
BenefitsSection,
Footer,

View File

@@ -2,9 +2,10 @@ import React from 'react';
import { Text, Button, Center, VStack, Heading } from '@chakra-ui/react';
import { Link } from 'react-router-dom';
import { Player } from '@lottiefiles/react-lottie-player';
import animate from '../../assets/animation/notFound.json';
import i18next from 'i18next';
import animate from '../../assets/animation/notFound.json';
const NotFound = () => {
return (
<Center minH='100vh'>

View File

@@ -1,6 +1,7 @@
import React from 'react';
import { Link as RouterLink } from 'react-router-dom';
import { Button } from '@chakra-ui/react';
import { URLs } from '../../__data__/urls';
import { mockOrder } from '../../mocks/landing';