import { StructureElementView } from '@/components/views/structure-element-view';
import type { CatalogElementDetailProps } from '@/types/catalog';

export default function StructureElementsShow(
    props: CatalogElementDetailProps,
) {
    return <StructureElementView {...props} />;
}
