foldbank-mock/web/app/components/CenterCol.tsx

18 lines
421 B
TypeScript
Raw Normal View History

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>
)
}