Install the kritzel-angular package ``` npm i kritzel-angular ```
npm install kritzel-angular
npm i kritzel-angular
`
Add LibModule to the providers array in your app.config.ts
`typescript
import { LibModule } from 'kritzel-angular';
export const appConfig: ApplicationConfig = {
providers: [
importProvidersFrom(LibModule.forRoot())
]
};
`
Include the LibModule into the imports array of your component to use Kritzel components in you template.
`typescript
import { LibModule } from 'kritzel-angular';
@Component({
selector: 'my-component',
standalone: true,
imports: [LibModule],
template:
,
})
export class MyComponent {
}
``