12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
import Vacansy from "../widgets/Vacansy/Vacansy"
|
|
|
|
type Props = {};
|
|
const VacansyPage = (props: Props) => {
|
|
return (
|
|
<>
|
|
<Vacansy />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default VacansyPage |