diff --git a/src/app/views/admin-overview/admin-overview.component.html b/src/app/views/admin-overview/admin-overview.component.html index b8985bb..5db7bc1 100644 --- a/src/app/views/admin-overview/admin-overview.component.html +++ b/src/app/views/admin-overview/admin-overview.component.html @@ -1,37 +1 @@ -

admin-overview works!

- - - -

Admin Overview

- - - - - - - - - - - - - - - - - - - - - - -
UsernameBan
user123 - -
anotherUser - -
testUser - -
- - - + \ No newline at end of file diff --git a/src/app/views/admin-overview/admin-overview.component.ts b/src/app/views/admin-overview/admin-overview.component.ts index 888075d..9089d03 100644 --- a/src/app/views/admin-overview/admin-overview.component.ts +++ b/src/app/views/admin-overview/admin-overview.component.ts @@ -1,9 +1,11 @@ import {Component} from '@angular/core'; +import {MatButton} from '@angular/material/button'; import {MatFormField} from '@angular/material/form-field'; +import {MatHeaderCell, MatHeaderCellDef, MatTable} from '@angular/material/table'; @Component({ selector: 'app-admin-overview', - imports: [MatFormField], + imports: [MatFormField, MatButton, MatTable, MatHeaderCell, MatHeaderCellDef], templateUrl: './admin-overview.component.html', styleUrl: './admin-overview.component.scss' }) diff --git a/src/app/views/dashboard/dashboard.component.html b/src/app/views/dashboard/dashboard.component.html index e0c966a..126ec50 100644 --- a/src/app/views/dashboard/dashboard.component.html +++ b/src/app/views/dashboard/dashboard.component.html @@ -1,3 +1,3 @@
-

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Facere illo animi quidem repellat perspiciatis, excepturi amet corrupti ipsa sit consequuntur placeat ratione saepe velit asperiores suscipit esse quod minima exercitationem minus, alias laudantium inventore! Beatae cum nobis error suscipit cupiditate, praesentium itaque ut ipsa iusto in doloribus unde quisquam consequuntur.

+
diff --git a/src/app/views/dashboard/dashboard.component.ts b/src/app/views/dashboard/dashboard.component.ts index 4653ae7..d6d08f4 100644 --- a/src/app/views/dashboard/dashboard.component.ts +++ b/src/app/views/dashboard/dashboard.component.ts @@ -1,8 +1,11 @@ import { Component } from '@angular/core'; +import {AdminOverviewComponent} from "@app/views/admin-overview/admin-overview.component"; @Component({ selector: 'app-dashboard', - imports: [], + imports: [ + AdminOverviewComponent + ], templateUrl: './dashboard.component.html', styleUrl: './dashboard.component.scss' })