Files
cash-stacks/frontend/src/api/data/users.ts
T
2021-04-14 18:41:50 -06:00

13 lines
246 B
TypeScript

import { DataBuddy } from '@dank-inc/data-buddy'
import { User } from '../../types'
const userRecords: User[] = [
{
id: '42',
name: 'TestUser42',
email: 'testuser@email.com',
},
]
export const users = new DataBuddy(userRecords)