Fixed imports all components

This commit is contained in:
MaxOvs19
2023-05-30 10:10:34 +03:00
parent 3fc1faff5f
commit 11b91ef627
63 changed files with 286 additions and 284 deletions

View File

@ -3,13 +3,13 @@ import { useDispatch, useSelector } from "react-redux";
import { useParams, useNavigate, Navigate } from "react-router-dom";
import SVG from "react-inlinesvg";
import { LEVELS, SKILLS } from "../../constants/constants";
import { LEVELS, SKILLS } from "../../utils/constants";
import {
currentCandidate,
selectCurrentCandidate,
} from "../../redux/outstaffingSlice";
import { apiRequest } from "../../api/request";
import { urlForLocal } from "../../helper";
import { urlForLocal } from "../../utils/helper";
import Form from "../../components/Form/Form";
import { Footer } from "../../components/Footer/Footer";