Compare commits

..

No commits in common. "771df3657005ac7e224aa6942c6016d104ad146f" and "7ee31733378f3d50fc5242a740d5e05021233dd5" have entirely different histories.

4 changed files with 4 additions and 24 deletions

5
.gitignore vendored
View File

@ -1,8 +1,3 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
{}

View File

@ -1,15 +0,0 @@
import React from 'react';
import Authenticated from '../layouts/Authenticated';
const MoveInOutsPage: React.FC = () => {
return (
<Authenticated>
<div className="p-6">
<h1 className="text-2xl font-semibold mb-4">Move In/Out Reports</h1>
<p>This section is under construction and will display move in/out records once available.</p>
</div>
</Authenticated>
);
};
export default MoveInOutsPage;