29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
import TitleBar from '../../components/shared/TitleBar';
|
|
import SingleCellIntroduction from './components/SingleCellIntroduction';
|
|
import SingleCellAdvantages from './components/SingleCellAdvantages';
|
|
import SingleCellApplications from './components/SingleCellApplications';
|
|
import SingleCellPipeline from './components/SingleCellPipeline';
|
|
import SingleCellSpecifications from './components/SingleCellSpecifications';
|
|
import PageLayout from '../../components/Layout/PageLayout';
|
|
|
|
export default function SingleCellRNASequencingPage() {
|
|
const breadcrumbs = [
|
|
{ label: 'Home', href: '/', current: false },
|
|
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
|
|
{ label: 'Single Cell RNA Sequencing', href: '#', current: true }
|
|
];
|
|
|
|
return (
|
|
<PageLayout>
|
|
<TitleBar
|
|
title="Single Cell RNA Sequencing"
|
|
breadcrumbs={breadcrumbs}
|
|
/>
|
|
<SingleCellIntroduction />
|
|
<SingleCellAdvantages />
|
|
<SingleCellPipeline/>
|
|
<SingleCellApplications />
|
|
<SingleCellSpecifications />
|
|
</PageLayout>
|
|
);
|
|
} |