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