import { Divider } from "antd"; import React, { useEffect } from "react"; import { useTranslation } from "react-i18next"; import TechClockInFormContainer from "../../components/tech-job-clock-in-form/tech-job-clock-in-form.container"; import TechClockedInList from "../../components/tech-job-clocked-in-list/tech-job-clocked-in-list.component"; import TechJobStatistics from "../../components/tech-job-statistics/tech-job-statistics.component"; export default function TechClockComponent() { const { t } = useTranslation(); useEffect(() => { document.title = t("titles.techjobclock"); }, [t]); return (
); }