mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
22 lines
546 B
TypeScript
22 lines
546 B
TypeScript
'use client';
|
|
|
|
import ProjectFlockForm from '@/components/pages/production/project-flock/form/ProjectFlockForm';
|
|
import React, { useImperativeHandle } from 'react';
|
|
import toast from 'react-hot-toast';
|
|
|
|
const AddProjectFlock = () => {
|
|
// useImperativeHandle(ref, () => ({
|
|
// validate() {
|
|
// toast.success('Validating');
|
|
// return false;
|
|
// },
|
|
// }));
|
|
return (
|
|
<section className='w-full flex flex-row justify-center'>
|
|
<ProjectFlockForm formType='add' />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default AddProjectFlock;
|