aboutsummaryrefslogtreecommitdiff
path: root/src/app/app-shell/app-shell.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/app-shell/app-shell.component.ts')
-rw-r--r--src/app/app-shell/app-shell.component.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/app/app-shell/app-shell.component.ts b/src/app/app-shell/app-shell.component.ts
new file mode 100644
index 0000000..f1bca89
--- /dev/null
+++ b/src/app/app-shell/app-shell.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-app-shell',
+ templateUrl: './app-shell.component.html',
+ styleUrls: ['./app-shell.component.css']
+})
+export class AppShellComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}