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

Kandang

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