foldbank-mock/web/app/components/CenterCol.tsx
Ameya Shenoy 6a9ab237a5
feat: major mods
- added graph on dashboard
- added recent txns

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2023-03-10 19:37:22 +05:30

17 lines
421 B
TypeScript

import styles from './centerCol.module.css'
import React from 'react'
import Dashboard from './Dashboard'
export default function CenterCol() {
return (
<div className={styles.main}>
<div className={styles.title}>
<div className={styles.greeting}>Good morning, Nishant</div>
<div className={styles.date}>It's 3rd of January, a Monday</div>
</div>
<Dashboard />
</div>
)
}