mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit drops unused deps from the `packages.json` files of various integration test apps. PR Close #60594
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import {platformBrowser} from '@angular/platform-browser';
|
|
|
|
import {AppModule} from './app/app.module';
|
|
|
|
platformBrowser()
|
|
.bootstrapModule(AppModule)
|
|
.catch((err) => console.error(err));
|