Spaces:
Sleeping
Sleeping
Update src/app/components/body/about/about.component.ts
Browse files
src/app/components/body/about/about.component.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
import {Component, Input, OnInit} from '@angular/core';
|
| 2 |
import {MatCard, MatCardContent} from "@angular/material/card";
|
| 3 |
import {NgIf} from "@angular/common";
|
|
|
|
|
|
|
| 4 |
|
| 5 |
@Component({
|
| 6 |
selector: 'app-about',
|
|
@@ -8,7 +10,9 @@ import {NgIf} from "@angular/common";
|
|
| 8 |
imports: [
|
| 9 |
MatCard,
|
| 10 |
MatCardContent,
|
| 11 |
-
NgIf
|
|
|
|
|
|
|
| 12 |
],
|
| 13 |
templateUrl: './about.component.html',
|
| 14 |
styleUrl: './about.component.css'
|
|
|
|
| 1 |
import {Component, Input, OnInit} from '@angular/core';
|
| 2 |
import {MatCard, MatCardContent} from "@angular/material/card";
|
| 3 |
import {NgIf} from "@angular/common";
|
| 4 |
+
import {RouterLink} from "@angular/router";
|
| 5 |
+
import {MatButton} from "@angular/material/button";
|
| 6 |
|
| 7 |
@Component({
|
| 8 |
selector: 'app-about',
|
|
|
|
| 10 |
imports: [
|
| 11 |
MatCard,
|
| 12 |
MatCardContent,
|
| 13 |
+
NgIf,
|
| 14 |
+
RouterLink,
|
| 15 |
+
MatButton
|
| 16 |
],
|
| 17 |
templateUrl: './about.component.html',
|
| 18 |
styleUrl: './about.component.css'
|