11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
|
import BasicWindow from "../../Components/BasicWindow";
|
||
|
|
||
|
function UserViewTimeReportsPage(): JSX.Element {
|
||
|
const content = <></>;
|
||
|
|
||
|
const buttons = <></>;
|
||
|
|
||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||
|
}
|
||
|
export default UserViewTimeReportsPage;
|