Added jobs list to vehicle detail page.
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
import React from "react";
|
||||
import React, { useEffect } from "react";
|
||||
import ProfilePage from "./profile.page";
|
||||
|
||||
import { useTranslation } from "react-i18next";
|
||||
export default function ProfileContainerPage() {
|
||||
const { t } = useTranslation();
|
||||
useEffect(() => {
|
||||
document.title = t("titles.profile");
|
||||
}, [t]);
|
||||
|
||||
return <ProfilePage />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user