2021-12-10 02:37:01 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google LLC All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2021-12-10 02:37:01 +00:00
|
|
|
*/
|
|
|
|
|
|
2021-12-16 07:00:43 +00:00
|
|
|
import {platformBrowser} from '@angular/platform-browser';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2021-12-09 05:44:17 +00:00
|
|
|
import {AppModule} from './app/app.module';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2024-01-16 21:35:47 +00:00
|
|
|
platformBrowser()
|
|
|
|
|
.bootstrapModule(AppModule)
|
|
|
|
|
.catch((err) => console.error(err));
|