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