import Button from '@/components/Button'; import { ClosingGeneralInformation } from '@/types/api/closing'; import { ProjectFlock } from '@/types/api/production/project-flock'; const ClosingKandangList = ({ initialValue, projectData, }: { initialValue?: ClosingGeneralInformation; projectData?: ProjectFlock; }) => { return (

Kandang

{projectData?.kandangs?.map((kandang) => ( ))}
); }; export default ClosingKandangList;