@paperless/react 0.1.0-alpha.27 → 0.1.0-alpha.271

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -91,7 +91,15 @@ import { PaperlessModule } from '@employes/paperless-ngx';
91
91
 
92
92
  @NgModule({
93
93
  declarations: [AppComponent],
94
- imports: [BrowserModule, PaperlessModule],
94
+ imports: [
95
+ BrowserModule,
96
+
97
+ // add this in your app module
98
+ PaperlessModule.forRoot(),
99
+
100
+ // add this in any module using paperless components
101
+ PaperlessModule,
102
+ ],
95
103
  providers: [],
96
104
  bootstrap: [AppComponent],
97
105
  })