Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import BibtexParser from "../components/makeSources";
export default function ResultSources(){
return (
<div>
<BibtexParser bibtexSources={bibtexSources} />
</div>
);
}
const bibtexSources = [
`
@article{wang2023sortlnps,
author = {Wang, X. and Liu, S. and Sun, Y. and others},
title = {Preparation of selective organ-targeting (SORT) lipid nanoparticles (LNPs) using multiple technical methods for tissue-specific mRNA delivery},
journal = {Nature Protocols},
volume = {18},
pages = {265--291},
year = {2023},
doi = {10.1038/s41596-022-00755-},
url = {https://doi.org/10.1038/s41596-022-00755-}
}
`,
`@article{sousa2024primeediting,
author = {Sousa, A. A. and Hemez, C. and Lei, L. and others},
title = {Systematic optimization of prime editing for the efficient functional correction of CFTR F508del in human airway epithelial cells},
journal = {Nature Biomedical Engineering},
year = {2024},
doi = {10.1038/s41551-024-01233-3},
url = {https://doi.org/10.1038/s41551-024-01233-3}
}
`
]