MCPcopy Create free account
hub / github.com/TanStack/router / fetchPosts

Function fetchPosts

examples/vue/basic-file-based-jsx/src/posts.tsx:32–38  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30}
31
32export const fetchPosts = async () => {
33 console.info('Fetching posts...')
34 await new Promise((r) => setTimeout(r, 500))
35 return axios
36 .get<Array<PostType>>(`${queryURL}/posts`)
37 .then((r) => r.data.slice(0, 10))
38}

Callers 4

posts.route.tsxFile · 0.90
profile.$.tsxFile · 0.90
posts.tsxFile · 0.90
posts.route.tsxFile · 0.90

Calls 3

infoMethod · 0.65
thenMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected