This commit is contained in:
Elijah Lucian
2021-04-14 20:36:40 -06:00
parent 8c40f30286
commit 486955a861
11 changed files with 20260 additions and 151 deletions

View File

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

View File

@@ -1,50 +0,0 @@
.ant-layout-header.app-header {
display: flex;
flex-direction: row;
justify-content: space-between;
vertical-align: middle;
padding: 0 1rem;
a {
font-size: 1.2rem;
font-weight: bold;
}
div {
display: flex;
vertical-align: middle;
height: 100%;
* {
margin: auto 0.5rem;
}
}
h3.ant-typography {
margin: auto 0 !important;
}
div.ant-typography {
font-size: 1.6rem;
}
}
.ant-layout.layout {
min-height: 100vh;
// background-color: #444;
// color: white;
}
.ant-avatar {
display: flex;
* {
margin: auto;
padding: 0;
}
}
.ant-layout-content {
max-width: 900px;
margin: auto;
}