Angular component for SimpleBar

- 🐦 Follow me on Twitter! or Mastodon!
- 👨💻 I'm available for hire! Reach out to me!
- 🚧 Check out my new project Scroll Snap Carousel!
- Via npmnpm install simplebar-angular --save
- Via Yarnyarn add simplebar-angular
#### Import module
``js
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { SimplebarAngularModule } from 'simplebar-angular';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, SimplebarAngularModule],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
`
#### Use component
`js``
ngx-simplebar
Find the list of available options on the core documentation.