Files
lti-web-client/src/app/closing/page.tsx
T
2025-12-10 18:09:10 +07:00

14 lines
255 B
TypeScript

import ClosingsTable from '@/components/pages/closing/ClosingsTable';
const Closing = () => {
return (
<section className='w-full p-4'>
<ClosingsTable />
</section>
);
};
export const dynamic = 'force-static';
export default Closing;