UNPKG
apt-maintenance-account
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.1.0
0.0.7
0.0.6
0.0.4
0.0.3
0.0.2
Apartment Maintenance Account Tracking Application - Client Side in Angular
apt-maintenance-account
/
src
/
app
/
about.component.ts
15 lines
(13 loc)
•
385 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{ Component }
from
'@angular/core'
;
@Component(
{ selector:
'about'
, template: ` <div
class
=
"jumbotron jumbotron-fluid"
> <div
class
=
"container"
> <h1
class
=
"display-1 text-center"
>About</h1> <p
class
=
"lead text-center"
>Tracks transactions on Apartment maintenance such
as
maintenance charge, expenses</p> </div> </div> ` }
)
export
class
AboutComponent
{ }