Skip to content

Commit

Permalink
отформатировал импорты
Browse files Browse the repository at this point in the history
  • Loading branch information
semant1cs committed Dec 12, 2023
1 parent 5af0164 commit 6148388
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions frontend/src/components/mapMenu/UIMapMenu/Level/Level.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React, {useState} from 'react';

import ModalWindow from "../../../../UIComponents/modalWindow/ModalWindow.tsx";

import ModalLevelBody from "./ModalLevelBody.tsx";
import {ITheoryUnitType} from "../../../../types/TheoryUnitType.ts";
import {ITaskType} from "../../../../types/TaskType.ts";
import levelStore from "../../../../store/levelStore.ts";

import {ILevelType} from "../../../../types/LevelType.ts";

interface IModuleProps {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
import React from 'react';

import "./modalLevelBody.scss"

import ArrowLeft from "../../../../UIComponents/UIChooseModule/ArrowLeft.tsx";
import ArrowRight from "../../../../UIComponents/UIChooseModule/ArrowRight.tsx";
import CustomButton from "../../../../UIComponents/customButton/CustomButton.tsx";
import HeaderModal from "../../../../UIComponents/modalWindow/HeaderModal.tsx";

import MenuItem from "./MenuItem.tsx";

import {ITheoryUnitType} from "../../../../types/TheoryUnitType.ts";
import {ITaskType} from "../../../../types/TaskType.ts";
import {ILevelType} from "../../../../types/LevelType.ts";
import {IMenuItemType} from "../../../../types/MenuItemType.ts";

import levelStore from "../../../../store/levelStore.ts";
import {observer} from "mobx-react-lite";
import {ILevelType} from "../../../../types/LevelType.ts";

interface IModalLevelProps {
level: ILevelType
Expand Down

0 comments on commit 6148388

Please sign in to comment.