import { VariantsIndexView } from '@/components/views/variants-index-view';
import type { CatalogVariantsIndexProps } from '@/types/catalog';

export default function VariantsIndex(props: CatalogVariantsIndexProps) {
    return <VariantsIndexView {...props} />;
}
