cash-stacks/frontend/src/api/data/users.ts
Elijah Lucian 486955a861 wip
2021-04-14 20:36:40 -06:00

15 lines
398 B
TypeScript

import { DataBuddy } from '@dank-inc/data-buddy'
import { Account, Stack, Transaction, User } from '../../types'
export const users = new DataBuddy<User>([
{
id: '42',
name: 'TestUser42',
email: 'testuser@email.com',
},
])
export const accounts = new DataBuddy<Account>([])
export const stacks = new DataBuddy<Stack>([])
export const transactions = new DataBuddy<Transaction>([])