27 lines
914 B
JavaScript
27 lines
914 B
JavaScript
import TitleBar from '../../components/shared/TitleBar';
|
|
import IsoIntroduction from './components/IsoIntroduction';
|
|
import IsoformPipeline from './components/IsoformPipeline';
|
|
import IsoApplications from './components/IsoApplications';
|
|
import IsoSpecifications from './components/IsoSpecifications';
|
|
import PageLayout from '../../components/Layout/PageLayout';
|
|
|
|
export default function IsoSequencingPage() {
|
|
const breadcrumbs = [
|
|
{ label: 'Home', href: '/', current: false },
|
|
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
|
|
{ label: 'Iso Sequencing using PacBio', href: '#', current: true }
|
|
];
|
|
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
<TitleBar
|
|
title="Iso Sequencing using PacBio"
|
|
breadcrumbs={breadcrumbs}
|
|
/>
|
|
<IsoIntroduction />
|
|
<IsoformPipeline/>
|
|
<IsoApplications />
|
|
<IsoSpecifications />
|
|
</PageLayout>
|
|
);
|
|
} |