https://github.com/angular/angular
Raw File
Tip revision: fbcddb092f722f33ca12ab074fd886f6240f18c0 authored by Alex Rickabaugh on 11 January 2023, 15:46:15 UTC
release: cut the v15.2.0-next.0 release
Tip revision: fbcddb0
default_export_component.ts
/**
 * @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 {
}
back to top