<
h2
>GeeksforGeeks</
h2
>
<
h5
>PrimeNG Dialog Component</
h5
>
<
h6
>Modal</
h6
>
<
p-button
(click)="gfg()"
icon
=
"pi pi-external-link"
label
=
"View"
>
</
p-button
>
<
p-dialog
header
=
"About GeeksforGeeks"
[(visible)]="geeks" [modal]="true"
[draggable]="true" [resizable]="true">
<
p
class
=
"p-m-0"
>
A Computer Science portal for geeks.
It contains well written, well thought
and well-explained computer science
and programming articles. With the idea
of imparting programming knowledge,
Mr. Sandeep Jain, an IIT Roorkee alumnus
started a dream, GeeksforGeeks. Whether
programming excites you or you feel
stifled, wondering how to prepare for
interview questions or how to ace data
structures and algorithms, GeeksforGeeks
is a one-stop solution.
</
p
>
<
ng-template
pTemplate
=
"footer"
>
<
p-button
icon
=
"pi pi-check"
(click)="
geeks
=
false
"
label
=
"OK"
class
=
"p-button-text"
>
</
p-button
>
</
ng-template
>
</
p-dialog
>