mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
044e1d8007
removed the standalone true from router package. PR Close #58950
19 lines
467 B
TypeScript
19 lines
467 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 {Component} from '@angular/core';
|
|
import {Routes} from '@angular/router';
|
|
|
|
@Component({
|
|
template: 'default exported',
|
|
selector: 'test-route',
|
|
})
|
|
export class TestRoute {}
|
|
|
|
export default [{path: '', pathMatch: 'full', component: TestRoute}] as Routes;
|