diff --git a/README.MD b/README.MD
index 3c3a3e4..10522e9 100644
--- a/README.MD
+++ b/README.MD
@@ -25,7 +25,7 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
-import { SampleModule } from 'ngx-slick';
+import { SlickModule } from 'ngx-slick';
@NgModule({
declarations: [
@@ -35,7 +35,7 @@ import { SampleModule } from 'ngx-slick';
BrowserModule,
// Specify your library as an import
- LibraryModule
+ SlickModule.forRoot()
],
providers: [],
bootstrap: [AppComponent]
@@ -43,16 +43,52 @@ import { SampleModule } from 'ngx-slick';
export class AppModule { }
```
+- Include jquery and slick css/js in your application :
+```
+
+
+
+
+```
+
Once your library is imported, you can use its components, directives and pipes in your Angular application:
+```html
+
+
+