16 lines
436 B
TypeScript
16 lines
436 B
TypeScript
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;
|