UNPKG
template-maker
Version:
latest (1.0.1)
1.0.1
1.0.0
A CLI to generate project templates with alot of options!!
template-maker
/
templates
/
angular
/
angular-temp
/
src
/
app
/
app.module.ts
19 lines
(16 loc)
•
393 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import
{ BrowserModule }
from
'@angular/platform-browser'
;
import
{ NgModule }
from
'@angular/core'
;
import
{ AppRoutingModule }
from
'./app-routing.module'
;
import
{ AppComponent }
from
'./app.component'
;
@NgModule(
{ declarations: [ AppComponent ], imports: [ BrowserModule, AppRoutingModule ], providers: [], bootstrap: [AppComponent] }
)
export
class
AppModule
{ }