Files
lti-web-client/src/app/master-data/fcr/page.tsx
T
2025-10-09 10:04:55 +07:00

12 lines
203 B
TypeScript

import FcrsTable from '@/components/pages/master-data/fcr/FcrsTable';
const Fcr = () => {
return (
<section className='w-full p-4'>
<FcrsTable />
</section>
);
};
export default Fcr;