pojednostavljeni edit form-ovi

This commit is contained in:
2024-01-04 11:31:35 +01:00
parent b653ce40bc
commit b168e6086f
4 changed files with 8 additions and 25 deletions

View File

@@ -12,9 +12,8 @@ import {
MapPinIcon
} from '@heroicons/react/24/outline';
import { LocationCard } from './ui/LocationCard';
import { BillPaymentForm } from './ui/BillPaymentForm';
import { BillEditForm } from './ui/BillEditForm';
import { LocationEditForm } from './ui/LocationEditForm';
import { BillTemplateForm } from './ui/BillTemplateForm';
import { MonthTitle } from './ui/MonthTitle';
import { AddMonthButton } from './ui/AddMonthButton';
import { AddLocationButton } from './ui/AddLocationButton';
@@ -61,9 +60,8 @@ export default function Page() {
{id: 3, name: 'GSKG', paid: true},
]} />
<BillPaymentForm bill={{id: 1, name: 'GSKG', description: 'Pričuva, Voda, Smeće', paid: true}} />
<BillEditForm bill={{id: 1, name: 'GSKG', description: 'Pričuva, Voda, Smeće', paid: true}} />
<LocationEditForm />
<BillTemplateForm />
</main>
);
}