import { AccessoriesView } from '@/components/views/accessories-view';

interface Accessory {
    id: number;
    brand_code: string;
    code: string;
    name_de: string;
    price: string | null;
    active: boolean;
}

interface WarrantyRate {
    duration_months: number;
    price: string;
}

export default function AccessoriesIndex(props: {
    accessories: Accessory[];
    warrantyRates: WarrantyRate[];
}) {
    return <AccessoriesView {...props} />;
}
