mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
b857aafcb9
Migrate formatting to prettier for router from clang-format PR Close #54318
17 lines
373 B
TypeScript
17 lines
373 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.io/license
|
|
*/
|
|
|
|
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
standalone: true,
|
|
template: 'default exported',
|
|
selector: 'test-route',
|
|
})
|
|
export default class TestRoute {}
|