Fixed imports in pages
This commit is contained in:
@ -8,7 +8,7 @@ import { setRole } from "@redux/roleSlice";
|
||||
|
||||
import ModalRegistration from "@components/Modal/ModalRegistration/ModalRegistration";
|
||||
import ModalErrorLogin from "@components/Modal/ModalErrorLogin/ModalErrorLogin";
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
import { apiRequest } from "@api/request";
|
||||
|
||||
import ellipse from "assets/icons/ellipse.png";
|
||||
|
@ -4,7 +4,7 @@ import { Link, Navigate, useNavigate } from "react-router-dom";
|
||||
|
||||
import CalendarComponent from "./CalendarComponent";
|
||||
import { currentMonth } from "./calendarHelper";
|
||||
import { Footer } from "@components/Footer/Footer";
|
||||
import { Footer } from "@components/Common/Footer/Footer";
|
||||
import { LogoutButton } from "@components/LogoutButton/LogoutButton";
|
||||
import { urlForLocal } from "@utils/helper";
|
||||
import { selectCurrentCandidate } from "@redux/outstaffingSlice";
|
||||
|
@ -6,7 +6,7 @@ import SkillSection from "@components/SkillSection/SkillSection";
|
||||
import Sidebar from "@components/CandidateSidebar/CandidateSidebar";
|
||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||
import { Footer } from "@components/Footer/Footer";
|
||||
import { Footer } from "@components/Common/Footer/Footer";
|
||||
import { Navigation } from "@components/Navigation/Navigation";
|
||||
|
||||
import {
|
||||
|
@ -3,7 +3,7 @@ import { useParams, useNavigate } from "react-router-dom";
|
||||
import PhoneInput from "react-phone-input-2";
|
||||
|
||||
import { apiRequest } from "@api/request";
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
import Swal from "sweetalert2";
|
||||
import withReactContent from "sweetalert2-react-content";
|
||||
|
||||
|
@ -3,9 +3,9 @@ import { Link } from "react-router-dom";
|
||||
|
||||
import { scrollToForm } from "@utils/helper";
|
||||
|
||||
import AuthHeader from "@components/AuthHeader/AuthHeader";
|
||||
import AuthHeader from "@components/Common/AuthHeader/AuthHeader";
|
||||
import SideBar from "@components/SideBar/SideBar";
|
||||
import { Footer } from "@components/Footer/Footer";
|
||||
import { Footer } from "@components/Common/Footer/Footer";
|
||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||
import BaseButton from "@components/Common/BaseButton/BaseButton";
|
||||
|
||||
|
@ -3,7 +3,7 @@ import { useNavigate } from "react-router-dom";
|
||||
import { useSelector } from "react-redux";
|
||||
|
||||
import { useLogout } from "@hooks/useLogout";
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
import { getRole } from "@redux/roleSlice";
|
||||
|
||||
import "./logoutButton.scss";
|
||||
|
@ -7,7 +7,7 @@ import { urlForLocal } from "@utils/helper";
|
||||
import { modalToggle, setProjectBoardFetch } from "@redux/projectsTrackerSlice";
|
||||
import { getCorrectDate } from "@components/Calendar/calendarHelper";
|
||||
|
||||
import TrackerModal from "@components/UI/TrackerModal/TrackerModal";
|
||||
import TrackerModal from "@components/Modal/TrackerModal/TrackerModal";
|
||||
import ModalLayout from "@components/Common/ModalLayout/ModalLayout";
|
||||
import BaseButton from "@components/Common/BaseButton/BaseButton";
|
||||
|
||||
|
@ -4,12 +4,12 @@ import { useDispatch, useSelector } from "react-redux";
|
||||
|
||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||
import { Footer } from "@components/Footer/Footer";
|
||||
import { Footer } from "@components/Common/Footer/Footer";
|
||||
import { getCorrectDate } from "@components/Calendar/calendarHelper";
|
||||
import BaseButton from "@components/Common/BaseButton/BaseButton";
|
||||
import TrackerModal from "@components/UI/TrackerModal/TrackerModal";
|
||||
import TrackerModal from "@components/Modal/TrackerModal/TrackerModal";
|
||||
import { Navigation } from "@components/Navigation/Navigation";
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
|
||||
import {
|
||||
deletePersonOnProject,
|
||||
|
@ -13,10 +13,10 @@ import {
|
||||
import { getReports } from "@components/Calendar/calendarHelper";
|
||||
|
||||
import { ProfileCalendarComponent } from "./ProfileCalendarComponent";
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||
import { Footer } from "@components/Footer/Footer";
|
||||
import { Footer } from "@components/Common/Footer/Footer";
|
||||
import { Navigation } from "@components/Navigation/Navigation";
|
||||
|
||||
import moment from "moment";
|
||||
|
@ -2,7 +2,7 @@ import React, { useEffect, useState } from "react";
|
||||
import { useNavigate, NavLink } from "react-router-dom";
|
||||
import { useDispatch, useSelector } from "react-redux";
|
||||
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
import { apiRequest } from "@api/request";
|
||||
import { auth, setProfileInfo } from "@redux/outstaffingSlice";
|
||||
import { getRole } from "@redux/roleSlice";
|
||||
|
@ -5,8 +5,8 @@ import { Link } from "react-router-dom";
|
||||
import { apiRequest } from "@api/request";
|
||||
import { deleteProject, modalToggle } from "@redux/projectsTrackerSlice";
|
||||
|
||||
import { ModalSelect } from "@components/UI/ModalSelect/ModalSelect";
|
||||
import TrackerModal from "@components/UI/TrackerModal/TrackerModal";
|
||||
import { ModalSelect } from "@components/Modal/ModalSelect/ModalSelect";
|
||||
import TrackerModal from "@components/Modal/TrackerModal/TrackerModal";
|
||||
|
||||
import link from "assets/icons/link.svg";
|
||||
import archiveSet from "assets/icons/archive.svg";
|
||||
|
@ -10,8 +10,8 @@ import {
|
||||
import ru from "date-fns/locale/ru";
|
||||
registerLocale("ru", ru);
|
||||
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Footer } from "@components/Footer/Footer";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
import { Footer } from "@components/Common/Footer/Footer";
|
||||
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
|
||||
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
|
||||
|
||||
|
@ -2,7 +2,7 @@ import React, { useState } from "react";
|
||||
import { useSelector, useDispatch } from "react-redux";
|
||||
import Select from "react-select";
|
||||
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
import { apiRequest } from "@api/request";
|
||||
import {
|
||||
selectedItems,
|
||||
|
@ -13,7 +13,7 @@ import {
|
||||
getSendRequest,
|
||||
setSendRequest,
|
||||
} from "@redux/reportSlice";
|
||||
import { Loader } from "@components/Loader/Loader";
|
||||
import { Loader } from "@components/Common/Loader/Loader";
|
||||
|
||||
import "./shortReport.scss";
|
||||
|
||||
|
Reference in New Issue
Block a user