mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-17 17:39:40 +03:00
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { OverlayscrollbarsModule } from 'overlayscrollbars-ngx';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [BrowserModule, OverlayscrollbarsModule],
|
|
providers: [],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|