12 lines
154 B
TypeScript
12 lines
154 B
TypeScript
import ViewVacansyPage from '@/fsd/pages/ViewVacansyPage';
|
|
|
|
const View = () => {
|
|
return (
|
|
<>
|
|
<ViewVacansyPage />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default View;
|