5 lines
110 B
JavaScript
5 lines
110 B
JavaScript
|
function fetchPosts() {
|
||
|
fetch('/posts', {
|
||
|
headers: { 'Content-Type': 'application/json' }
|
||
|
})
|
||
|
}
|