27 lines
830 B
JavaScript
27 lines
830 B
JavaScript
import ExomeMitoTitle from './components/ExomeMitoTitle';
|
|
import OperifyExomeMito from './components/OperifyExomeMito';
|
|
import SampleRequirements from '../exome/components/SampleRequirements';
|
|
import ClinicalAreasGrid from '../components/ClinicalAreasGrid';
|
|
import PageLayout from '../../../components/Layout/PageLayout';
|
|
|
|
export default function ExomeMitoPage() {
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
{/* Page Title */}
|
|
<ExomeMitoTitle />
|
|
|
|
{/* Operify ExomeMito */}
|
|
<OperifyExomeMito />
|
|
<SampleRequirements
|
|
title="Operify ExomeMito"
|
|
items={[
|
|
"2-5 mL peripheral blood in EDTA tube",
|
|
"High-quality extracted DNA (minimum 2 µg)",
|
|
"Fresh or frozen tissue for certain cases"
|
|
]}
|
|
/>
|
|
<ClinicalAreasGrid/>
|
|
</PageLayout>
|
|
);
|
|
}
|