Skip to content
Snippets Groups Projects
education-souces.tsx 556 B
import BibtexParser from "../components/makeSources";

export default function EduSources(){
    return (
        <div>
          <BibtexParser bibtexSources={bibtexSources} special="edu" />
        </div>
      );
}


const bibtexSources = [
`@article{article,
author = {Aswegen, Ellie and Pendergast, Donna},
year = {2023},
month = {08},
pages = {1-15},
title = {The impact of interest: an emergent model of interest development in the early years},
volume = {193},
journal = {Early Child Development and Care},
doi = {10.1080/03004430.2023.2245575}
}`
]