Added routing

This commit is contained in:
2026-03-25 16:03:52 +01:00
parent 5be67500c6
commit 822e22690b
16 changed files with 113 additions and 68 deletions
@@ -1,3 +0,0 @@
<p>
groups works!
</p>
+3 -9
View File
@@ -1,16 +1,10 @@
import {Component, OnInit} from '@angular/core';
import {Component} from '@angular/core';
@Component({
selector: 'app-groups',
templateUrl: './groups.component.html',
styleUrls: ['./groups.component.scss'],
imports: []
})
export class GroupsComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
export class GroupsComponent {
}
-3
View File
@@ -1,3 +0,0 @@
<p>
home works!
</p>
+2 -1
View File
@@ -1,9 +1,10 @@
import {Component, OnInit} from '@angular/core';
import {Component} from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
imports: []
})
export class HomeComponent {
}
@@ -1,3 +0,0 @@
<p>
ranking works!
</p>
+3 -9
View File
@@ -1,16 +1,10 @@
import {Component, OnInit} from '@angular/core';
import {Component} from '@angular/core';
@Component({
selector: 'app-ranking',
templateUrl: './ranking.component.html',
styleUrls: ['./ranking.component.scss'],
imports: []
})
export class RankingComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
export class RankingComponent {
}
@@ -1,3 +0,0 @@
<p>
friends works!
</p>
+3 -8
View File
@@ -1,16 +1,11 @@
import {Component, OnInit} from '@angular/core';
import {Component} from '@angular/core';
@Component({
selector: 'app-social',
templateUrl: './social.component.html',
styleUrls: ['./social.component.scss'],
imports: []
})
export class SocialComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
export class SocialComponent {
}