2016-09-07 23:04:33 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-09-07 23:04:33 +00:00
|
|
|
*
|
|
|
|
|
* 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
|
2016-09-07 23:04:33 +00:00
|
|
|
*/
|
2019-01-28 20:59:25 +00:00
|
|
|
|
2025-06-09 21:39:42 +00:00
|
|
|
import 'zone.js';
|
2022-12-14 11:38:07 +00:00
|
|
|
|
2025-05-20 11:16:50 +00:00
|
|
|
import {platformBrowser} from '@angular/platform-browser';
|
2016-09-07 23:04:33 +00:00
|
|
|
|
2022-02-03 01:00:31 +00:00
|
|
|
import {TestsAppModule} from './test_module';
|
|
|
|
|
|
2025-05-20 11:16:50 +00:00
|
|
|
platformBrowser().bootstrapModule(TestsAppModule);
|