Keeping going :)

This commit is contained in:
Matthew Holt 2023-10-07 16:43:39 -06:00 committed by Francis Lavoie
parent 05f9b673f6
commit 5dbd53c0ee
No known key found for this signature in database
GPG key ID: C5204D4F28147FC8
7 changed files with 240 additions and 7 deletions

5
new/resources/js/home.js Normal file
View file

@ -0,0 +1,5 @@
ready(async function() {
const resp = await fetch("/resources/testimonials.json");
const testimonials = await resp.json();
console.log(testimonials);
});