UNPKG
@rowantervelde/ng2-footer
Version:
latest (0.1.0-alpha.1)
0.1.0-alpha.1
0.0.1
0.0.1-alpha.3
0.0.1-alpha.2
RTV - Angular 2 Footer component
@rowantervelde/ng2-footer
/
footer.component.ts
17 lines
(12 loc)
•
303 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@Component
({
moduleId
:
module
.
id
,
selector
:
'rtv-footer'
,
templateUrl
:
'footer.component.html'
,
styleUrls
: [
'footer.component.css'
] })
export
class
FooterComponent
implements
OnInit
{
constructor
(
) {}
ngOnInit
(
) { } }