-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nikita Cherevko
committed
Dec 22, 2023
1 parent
999d80a
commit c25973a
Showing
5 changed files
with
66 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,36 @@ | ||
<p>task-faq works!</p> | ||
<h2 mat-dialog-title>Справочная информация</h2> | ||
<mat-dialog-content> | ||
|
||
<mat-accordion> | ||
<mat-expansion-panel> | ||
<mat-expansion-panel-header> | ||
<mat-panel-title> | ||
Операция "Пошив манжет внутренний" | ||
</mat-panel-title> | ||
</mat-expansion-panel-header> | ||
<p>Learn one way to build applications with Angular and reuse your code and abilities to build | ||
apps for any deployment target. For web, mobile web, native mobile and native desktop.</p> | ||
</mat-expansion-panel> | ||
<mat-expansion-panel> | ||
<mat-expansion-panel-header> | ||
<mat-panel-title> | ||
Как начисляются деньги? | ||
</mat-panel-title> | ||
</mat-expansion-panel-header> | ||
<p>Learn one way to build applications with Angular and reuse your code and abilities to build | ||
apps for any deployment target. For web, mobile web, native mobile and native desktop.</p> | ||
</mat-expansion-panel> | ||
<mat-expansion-panel> | ||
<mat-expansion-panel-header> | ||
<mat-panel-title> | ||
Не успеваю в план | ||
</mat-panel-title> | ||
</mat-expansion-panel-header> | ||
<p>Learn one way to build applications with Angular and reuse your code and abilities to build | ||
apps for any deployment target. For web, mobile web, native mobile and native desktop.</p> | ||
</mat-expansion-panel> | ||
</mat-accordion> | ||
</mat-dialog-content> | ||
<mat-dialog-actions align="end"> | ||
<button mat-button color="primary" mat-dialog-close cdkFocusInitial>Закрыть</button> | ||
</mat-dialog-actions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
import { Component } from '@angular/core'; | ||
import {MatDialogActions, MatDialogClose, MatDialogContent, MatDialogTitle} from "@angular/material/dialog"; | ||
import {MatButtonModule} from "@angular/material/button"; | ||
import {MatIconModule} from "@angular/material/icon"; | ||
import {MatExpansionModule} from "@angular/material/expansion"; | ||
|
||
@Component({ | ||
selector: 'app-task-faq', | ||
standalone: true, | ||
imports: [], | ||
imports: [ | ||
MatDialogTitle, | ||
MatDialogContent, | ||
MatDialogActions, | ||
MatDialogClose, | ||
MatButtonModule, | ||
MatIconModule, | ||
MatExpansionModule, | ||
], | ||
templateUrl: './task-faq.component.html', | ||
styleUrl: './task-faq.component.scss' | ||
styleUrl: './task-faq.component.scss', | ||
}) | ||
export class TaskFaqComponent { | ||
|
||
} | ||
export class TaskFaqComponent {} |