Files
cash-stacks/frontend/src/api/data/users.ts
T
Elijah Lucian 1904bb8668 💕😁
2021-04-14 18:16:50 -06:00

13 lines
250 B
TypeScript

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