projects
/
oweals
/
peertube.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Client: split in angular modules
[oweals/peertube.git]
/
client
/
src
/
app
/
login
/
login.module.ts
1
import { NgModule } from '@angular/core';
2
3
import { LoginRoutingModule } from './login-routing.module';
4
import { LoginComponent } from './login.component';
5
import { SharedModule } from '../shared';
6
7
@NgModule({
8
imports: [
9
LoginRoutingModule,
10
SharedModule
11
],
12
13
declarations: [
14
LoginComponent
15
],
16
17
exports: [
18
LoginComponent
19
],
20
21
providers: [
22
]
23
})
24
export class LoginModule { }