28 lines
685 B
JavaScript
28 lines
685 B
JavaScript
import OncologyTitle from './components/OncologyTitle';
|
|
import OncologyIntro from './components/OncologyIntro';
|
|
import HereditaryCancerPanel from './components/HereditaryCancerPanel';
|
|
import SampleRequirements from '../rare-disorders/exome/components/SampleRequirements';
|
|
|
|
import PageLayout from '../../components/Layout/PageLayout';
|
|
|
|
export default function OncologyPage() {
|
|
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
{/* Page Title */}
|
|
<OncologyTitle />
|
|
|
|
{/* Intro */}
|
|
<OncologyIntro />
|
|
|
|
{/* Hereditary Cancer Panel */}
|
|
<HereditaryCancerPanel />
|
|
|
|
|
|
|
|
{/* Sample Requirements */}
|
|
<SampleRequirements/>
|
|
</PageLayout>
|
|
);
|
|
}
|