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
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
2019-01-28 20:59:25 +00:00
|
|
|
|
2022-12-14 11:38:07 +00:00
|
|
|
import 'zone.js/lib/browser/rollup-main';
|
|
|
|
|
|
2016-09-07 23:04:33 +00:00
|
|
|
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
|
|
|
|
|
2022-02-03 01:00:31 +00:00
|
|
|
import {TestsAppModule} from './test_module';
|
|
|
|
|
|
|
|
|
|
platformBrowserDynamic().bootstrapModule(TestsAppModule);
|