Skip to main content
Module

x/jotai/tests/query/fakeFetch.ts

👻 Primitive and flexible state management for React
Go to Latest
File
async function fakeFetch<Response>( response: Response, error = false): Promise<{ response: Response }> { if (error) { throw new Error('fetch error') } return { response }}
export default fakeFetch