10 lines
276 B
TypeScript
10 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;
|