Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
303b89cb2e6697ac659cca0cd1287c8ebff373f5
/
.
/
examples
/
angular
/
src
/
main.dev.ts
blob: 32205678c523677eaf8ed4c1804c0faceb7fb8e9 [
file
] [
log
] [
blame
]
/**
* Used to launch the application under Bazel development mode.
*/
import
{
platformBrowser
}
from
'@angular/platform-browser'
;
import
{
AppModule
}
from
'./app/app.module'
;
platformBrowser
().
bootstrapModule
(
AppModule
);