Skip to content
Snippets Groups Projects
res-sources.tsx 1.1 KiB
Newer Older
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}
}
`


]