Add profile and settings page placeholders; Expand routing

This commit is contained in:
kevinpauer
2022-03-19 19:55:42 +01:00
parent e5f5b7014b
commit 9530d1b57f
12 changed files with 119 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-bot-settings',
templateUrl: './bot-settings.component.html',
styleUrls: ['./bot-settings.component.scss']
})
export class BotSettingsComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}