- added graph on dashboard - added recent txns Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
17 lines
421 B
TypeScript
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>
|
|
)
|
|
}
|
|
|