Files
examples/tanstack/src/utils/users.tsx

8 lines
118 B
TypeScript

export type User = {
id: number
name: string
email: string
}
export const DEPLOY_URL = 'http://localhost:3000'