17 lines
578 B
JavaScript
17 lines
578 B
JavaScript
import { Divider } from "antd";
|
|
import React from "react";
|
|
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() {
|
|
return (
|
|
<div>
|
|
<TechJobStatistics />
|
|
<TechClockInFormContainer />
|
|
<Divider />
|
|
<TechClockedInList />
|
|
</div>
|
|
);
|
|
}
|