Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
d6c128fb066293bc7c4c9b61d4d6c67a1f3d914d
/
.
/
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
);