feat(FE-320): create Closing list page

This commit is contained in:
ValdiANS
2025-12-06 16:51:48 +07:00
parent 72840e2193
commit 84ff5e178b
+11
View File
@@ -0,0 +1,11 @@
import ClosingsTable from '@/components/pages/closing/ClosingsTable';
const Closing = () => {
return (
<section className='w-full p-4'>
<ClosingsTable />
</section>
);
};
export default Closing;