Added jobs list to vehicle detail page.

This commit is contained in:
Patrick Fic
2020-02-07 14:25:22 -08:00
parent 71bd8df208
commit 7f06df66fd
11 changed files with 277 additions and 121 deletions

View File

@@ -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 />;
}