mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 05:22:02 +00:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import ClosingsTable from '@/components/pages/closing/ClosingsTable';
|
|
|
|
const Closing = () => {
|
|
return (
|
|
<section className='w-full p-4'>
|
|
<ClosingsTable />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Closing;
|