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 FinancesTable from '@/components/pages/finance/FinancesTable';
|
|
|
|
const Finance = () => {
|
|
return (
|
|
<section className='w-full p-4'>
|
|
<FinancesTable />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Finance;
|