xref: /aosp_15_r20/development/tools/motion/motion_test_watcher_app/src/main.ts (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1import { bootstrapApplication } from '@angular/platform-browser';
2
3import { AppComponent } from './app/app.component';
4import { appConfig } from './app/app.config';
5
6bootstrapApplication(AppComponent, appConfig).catch((err) =>
7  console.error(err),
8);
9