UNPKG
angular-webpack-quickstart
Version:
latest (0.1.2)
0.1.2
Angular QuickStart with Webpack 2 - source from the documentation.
angular-webpack-quickstart
/
src
/
app
/
app.module.ts
12 lines
(9 loc)
•
318 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ NgModule }
from
'@angular/core'
;
import
{ BrowserModule }
from
'@angular/platform-browser'
;
import
{ AppComponent }
from
'./app.component'
;
@NgModule(
{ imports: [ BrowserModule ], declarations: [ AppComponent ], bootstrap: [ AppComponent ] }
)
export
class
AppModule
{ }