add empty forms page

This commit is contained in:
Victor Batischev
2024-03-06 14:08:06 +03:00
parent 46c91cfbff
commit 23e8c5c683
36 changed files with 93 additions and 73 deletions

View File

@ -13,7 +13,7 @@ import Outstaffing from "@components/Outstaffing/Outstaffing";
import { ProfileBreadcrumbs } from "@components/ProfileBreadcrumbs/ProfileBreadcrumbs";
import { ProfileHeader } from "@components/ProfileHeader/ProfileHeader";
const Home = () => {
export const Home = () => {
if (localStorage.getItem("role_status") !== "18") {
return <Navigate to="/profile" replace />;
}
@ -75,5 +75,3 @@ const Home = () => {
</>
);
};
export default Home;