Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR#14: master => dev #22

Merged
merged 5 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions API/API.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
const API = {
// Get all proj
async getAllPosts() {
const response = await fetch(
""
);
const data = await response.json();
return data;
},
// Get proj via id
async getPostById(id) {
const response = await fetch(
``
);
const data = await response.json();
return data;
},
};
Empty file removed js/smoothscroll.js
Empty file.
5 changes: 5 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

202 changes: 202 additions & 0 deletions node_modules/web-vitals/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading