Thanks @adamkeenan88
Parse Error: < studyBuddy /></h3>
This is because < studyBuddy />
is getting parsed as a HTML tag or component that doesn’t exist. So in src/template.html
change
<h3 class="project-wrapper__text-title">< studyBuddy /></h3>
to
<h3 class="project-wrapper__text-title">< studyBuddy /></h3>
The <
and >
are then changed to <
and >
when the page is viewed in the browser.