mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Migrated the demo apps and shell-browser apps to use bootstrap application, simplifed routing and standalone components. PR Close #58319
13 lines
445 B
TypeScript
13 lines
445 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
import {appConfig} from './app/app.config';
|
|
import {bootstrapApplication} from '@angular/platform-browser';
|
|
import {AppComponent} from './app/app.component';
|
|
|
|
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|