- added graph on dashboard - added recent txns Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
15 lines
375 B
TypeScript
15 lines
375 B
TypeScript
|
|
import styles from './page.module.css'
|
|
import RecurringCol from './components/RecurringCol'
|
|
import CenterCol from './components/CenterCol'
|
|
import RecentTransactions from './components/RecentTransactions'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className={styles.main}>
|
|
<RecurringCol />
|
|
<CenterCol />
|
|
<RecentTransactions />
|
|
</main>
|
|
)
|
|
}
|