forked from Phrostbyte21/BIGbigger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
phrostbyte21
authored and
phrostbyte21
committed
Jul 31, 2020
1 parent
0614524
commit ef27c84
Showing
3 changed files
with
32 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
//Import Testimonials API | ||
import { testimonials } from './testimonials.js' | ||
|
||
function createNode(element) { | ||
return document.createElement(element); | ||
} | ||
|
||
function append(parent, el) { | ||
return parent.appendChild(el); | ||
} | ||
|
||
const testimonial = document.getElementById('testimonial'); | ||
|
||
first(testimonials).map(testimonial => { | ||
let li = createNode('li'), | ||
span = createNode('span'); | ||
|
||
span.innerText = `${testimonial.testimonial}`; | ||
|
||
append(li, span); | ||
append(testimonial, li); | ||
}) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.