Proposal to remove MXSampleSummaryAndDetails
For the sake of simplication I wonder if we can get rid of the class MXSampleViewer. Currently, it contains:
import type { Sample } from '@edata-portal/icat-plus-api';
import { MXSampleSummaryAndDetails } from 'components/sample/MXSampleSummaryAndDetails';
export default function MXSampleViewer({ sample }: { sample: Sample }) {
return <MXSampleSummaryAndDetails sample={sample} />;
}
I know that is not a big deal but from an external point of view, it adds some unnecessarily complexity.