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