join/src/app/module/animation.module.ts
2024-03-27 17:33:15 +01:00

8 lines
249 B
TypeScript

import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
imports: [BrowserAnimationsModule],
exports: [BrowserAnimationsModule],
})
export class MyAnimationsModule {}