angular/integration/animations-async/src/app/app.component.ts
Matthieu Riegler 2c2ccf76e2 refactor(animations): Add integration test for animations/async. (#50738)
This integration test aims to cover that we do not break the code splitting of the animation module when we use `provideAnimationsAsync()`.

PR Close #50738
2023-09-29 10:49:40 -07:00

10 lines
236 B
TypeScript

import {Component} from '@angular/core';
import {RouterModule} from '@angular/router';
@Component({
selector: 'app-root',
template: `<router-outlet/>`,
imports: [RouterModule],
standalone: true,
})
export class AppComponent {
}