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;
|
||||
Reference in New Issue
Block a user