14 lines
205 B
TypeScript
14 lines
205 B
TypeScript
import ViewVacansy from "../widgets/ViewVacansy/ViewVacansy";
|
|
|
|
|
|
|
|
type Props = {};
|
|
const ViewVacansyPage = (props: Props) => {
|
|
return (
|
|
<>
|
|
<ViewVacansy />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ViewVacansyPage; |