2024-03-14 10:32:49 +01:00
|
|
|
import BasicWindow from "../../Components/BasicWindow";
|
2024-03-14 10:54:37 +01:00
|
|
|
import Button from "../../Components/Button";
|
2024-03-14 15:17:15 +01:00
|
|
|
import TimeReport from "../../Components/TimeReport";
|
2024-03-14 10:32:49 +01:00
|
|
|
|
|
|
|
function PMViewUnsignedReport(): JSX.Element {
|
2024-03-14 15:17:15 +01:00
|
|
|
const content = (
|
|
|
|
<>
|
|
|
|
<h1 className="font-bold text-[30px] mb-[20px]">
|
|
|
|
Username's Time Report
|
|
|
|
</h1>
|
|
|
|
<TimeReport />
|
|
|
|
</>
|
|
|
|
);
|
2024-03-14 10:32:49 +01:00
|
|
|
|
2024-03-14 10:54:37 +01:00
|
|
|
const buttons = (
|
|
|
|
<>
|
|
|
|
<Button
|
|
|
|
text="Sign"
|
|
|
|
onClick={(): void => {
|
|
|
|
return;
|
|
|
|
}}
|
2024-03-15 14:32:17 +01:00
|
|
|
type="button"
|
2024-03-14 10:54:37 +01:00
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
text="Save"
|
|
|
|
onClick={(): void => {
|
|
|
|
return;
|
|
|
|
}}
|
2024-03-15 14:32:17 +01:00
|
|
|
type="button"
|
2024-03-14 10:54:37 +01:00
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
text="Back"
|
|
|
|
onClick={(): void => {
|
|
|
|
return;
|
|
|
|
}}
|
2024-03-15 14:32:17 +01:00
|
|
|
type="button"
|
2024-03-14 10:54:37 +01:00
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
2024-03-14 10:32:49 +01:00
|
|
|
|
|
|
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
|
|
|
}
|
|
|
|
export default PMViewUnsignedReport;
|