copied the code from the working repo
This commit is contained in:
15
mtucijobsweb2/fsd/pages/EditVacancyPage.tsx
Normal file
15
mtucijobsweb2/fsd/pages/EditVacancyPage.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import Resume from '../widgets/Resume/Resume';
|
||||
import EditVacancy from '../widgets/ViewVacansy/EditVacancy/EditVacancy';
|
||||
|
||||
type Props = {
|
||||
id: number;
|
||||
};
|
||||
const EditVacancyPage = (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<EditVacancy id={props.id} />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default EditVacancyPage;
|
||||
12
mtucijobsweb2/fsd/pages/LoginPage.tsx
Normal file
12
mtucijobsweb2/fsd/pages/LoginPage.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import LoginComponent from "../widgets/Login/Login";
|
||||
|
||||
type Props = {};
|
||||
const LoginPage = (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<LoginComponent />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default LoginPage;
|
||||
12
mtucijobsweb2/fsd/pages/RedirectPage.tsx
Normal file
12
mtucijobsweb2/fsd/pages/RedirectPage.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import Redirect from '../widgets/Redirect/Redirect';
|
||||
|
||||
type Props = {};
|
||||
const RedirectPage = (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<Redirect />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default RedirectPage;
|
||||
15
mtucijobsweb2/fsd/pages/ResumePage.tsx
Normal file
15
mtucijobsweb2/fsd/pages/ResumePage.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import Resume from '../widgets/Resume/Resume';
|
||||
|
||||
|
||||
type Props = {
|
||||
id: number
|
||||
};
|
||||
const ResumePage = (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<Resume id = {props.id}/>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ResumePage;
|
||||
13
mtucijobsweb2/fsd/pages/SearchResumePage.tsx
Normal file
13
mtucijobsweb2/fsd/pages/SearchResumePage.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import SearchResume from "../widgets/SearchResume/SearchResume";
|
||||
|
||||
|
||||
type Props = {};
|
||||
const SearchResumePage = (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<SearchResume />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default SearchResumePage;
|
||||
12
mtucijobsweb2/fsd/pages/VacansyPage.tsx
Normal file
12
mtucijobsweb2/fsd/pages/VacansyPage.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import Vacansy from "../widgets/Vacansy/Vacansy"
|
||||
|
||||
type Props = {};
|
||||
const VacansyPage = (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<Vacansy />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default VacansyPage
|
||||
14
mtucijobsweb2/fsd/pages/ViewVacansyPage.tsx
Normal file
14
mtucijobsweb2/fsd/pages/ViewVacansyPage.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import ViewVacansy from "../widgets/ViewVacansy/ViewVacansy";
|
||||
|
||||
|
||||
|
||||
type Props = {};
|
||||
const ViewVacansyPage = (props: Props) => {
|
||||
return (
|
||||
<>
|
||||
<ViewVacansy />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ViewVacansyPage;
|
||||
Reference in New Issue
Block a user