From fc8f5eceee157f0b25b2a17afabd8bf79d738057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:54:05 +0300 Subject: [PATCH] Add dashboard --- src/views/dashboard.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/views/dashboard.ts diff --git a/src/views/dashboard.ts b/src/views/dashboard.ts new file mode 100644 index 0000000..5895f6b --- /dev/null +++ b/src/views/dashboard.ts @@ -0,0 +1,26 @@ +import { Component } from '@angular/core'; +import { StatsWidget } from '@/src/components/dashboard/statswidget'; +import { RecentSalesWidget } from '@/src/components/dashboard/recentsaleswidget'; +import { BestSellingWidget } from '@/src/components/dashboard/bestsellingwidget'; +import { RevenueStreamWidget } from '@/src/components/dashboard/revenuestreamwidget'; +import { NotificationsWidget } from '@/src/components/dashboard/notificationswidget'; + +@Component({ + selector: 'app-dashboard', + imports: [StatsWidget, RecentSalesWidget, BestSellingWidget, RevenueStreamWidget, NotificationsWidget], + template: ` +