Added my shop page and ability to add, edit and delete employees.
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
import React from "react";
|
||||
import React, { useEffect } from "react";
|
||||
import VehiclesPageComponent from "./vehicles.page.component";
|
||||
|
||||
import { useTranslation } from "react-i18next";
|
||||
export default function VehiclesPageContainer() {
|
||||
const { t } = useTranslation();
|
||||
useEffect(() => {
|
||||
document.title = t("titles.vehicles");
|
||||
}, [t]);
|
||||
return <VehiclesPageComponent />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user