mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
import FcrForm from '@/components/pages/master-data/fcr/form/FcrForm';
|
|
|
|
const AddFcr = () => {
|
|
return (
|
|
<div className='w-full p-4 flex flex-row justify-center'>
|
|
<FcrForm />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AddFcr;
|