import { ModelsIndexView } from '@/components/views/models-index-view';
import type { CatalogModelsIndexProps } from '@/types/catalog';

export default function ModelsIndex(props: CatalogModelsIndexProps) {
    return <ModelsIndexView {...props} />;
}
